diff --git a/systems/artemision/wifi.nix b/systems/artemision/wifi.nix index 21a3094..6a3af7b 100644 --- a/systems/artemision/wifi.nix +++ b/systems/artemision/wifi.nix @@ -11,7 +11,7 @@ in networking.wireless = { enable = true; secretsFile = config.sops.secrets."wifi-env".path; - userControlled.enable = true; + userControlled = true; networks = { "taetaethegae-2.0" = { pskRaw = "ext:PASS_taetaethegae_20"; diff --git a/users/alice/home/zsh.nix b/users/alice/home/zsh.nix index c3f9788..ce92156 100644 --- a/users/alice/home/zsh.nix +++ b/users/alice/home/zsh.nix @@ -1,9 +1,10 @@ -{ lib, ... }: +{ lib, config, ... }: { programs.zsh = { enable = true; + dotDir = "${config.xdg.configHome}/zsh"; oh-my-zsh = { enable = true; plugins = [ diff --git a/users/default.nix b/users/default.nix index 0149557..cb43e5f 100644 --- a/users/default.nix +++ b/users/default.nix @@ -22,6 +22,7 @@ (lib.mkIf config.programs.wireshark.enable "wireshark") (lib.mkIf config.virtualisation.docker.enable "docker") (lib.mkIf (with config.services.locate; (enable && package == pkgs.plocate)) "plocate") + (lib.mkIf config.networking.wireless.enable "wpa_supplicant") "libvirtd" "dialout" "plugdev"