Fix conflicting wpa settings

This commit is contained in:
Kiana Sheibani 2022-03-01 18:53:15 -05:00
parent 2f610c6fc2
commit f55e021fe9
2 changed files with 1 additions and 1 deletions

View file

@ -17,7 +17,6 @@ nixpkgs, # The flake's input version of nixpkgs
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
networking.wireless.enable = true;
networking.wireless.networks = { networking.wireless.networks = {
"NETGEAR97".psk = "pastelcello694"; "NETGEAR97".psk = "pastelcello694";
}; };

View file

@ -6,6 +6,7 @@ in {
]; ];
networking.hostName = "kiana-desktop"; networking.hostName = "kiana-desktop";
networking.wireless.enable = true;
# Passwords # Passwords
users.users.kiana = { inherit hashedPassword; }; users.users.kiana = { inherit hashedPassword; };