Setup iwd for nixos and added discord package
This commit is contained in:
parent
0f538e9215
commit
aaad24982b
@ -14,6 +14,7 @@
|
|||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
feh
|
feh
|
||||||
dconf
|
dconf
|
||||||
|
discord
|
||||||
microsoft-edge
|
microsoft-edge
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
bitwarden
|
bitwarden
|
||||||
|
@ -16,9 +16,15 @@
|
|||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
# General setup
|
# Networking
|
||||||
networking.hostName = "randomctf"; # Define your hostname.
|
networking.hostName = "randomctf"; # Define your hostname.
|
||||||
networking.networkmanager.enable = true;
|
networking.wireless.iwd.enable = true;
|
||||||
|
networking.networkmanager = {
|
||||||
|
enable = true;
|
||||||
|
wifi.backend = "iwd";
|
||||||
|
};
|
||||||
|
|
||||||
|
# General setup
|
||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone = "America/Los_Angeles";
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
i18n.extraLocaleSettings = {
|
i18n.extraLocaleSettings = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user