diff --git a/nixos/modules/des/plasma/default.nix b/nixos/modules/des/plasma/default.nix index 542c012..10a85e6 100644 --- a/nixos/modules/des/plasma/default.nix +++ b/nixos/modules/des/plasma/default.nix @@ -16,20 +16,20 @@ desktopManager.plasma5 = { enable = true; useQtScaling = true; - - excludePackages = with pkgs.libsForQt5; [ - elisa - okular - khelpcenter - konsole - print-manager - plasma-systemmonitor - gwenview - ]; }; excludePackages = with pkgs; [ xterm ]; }; + + environment.plasma5.excludePackages = with pkgs.libsForQt5; [ + elisa + okular + khelpcenter + konsole + print-manager + plasma-systemmonitor + gwenview + ]; } diff --git a/nixos/modules/utils/ssh/default.nix b/nixos/modules/utils/ssh/default.nix index b6505cf..84945b2 100644 --- a/nixos/modules/utils/ssh/default.nix +++ b/nixos/modules/utils/ssh/default.nix @@ -3,7 +3,7 @@ { services.openssh = { enable = true; - passwordAuthentication = false; + settings.PasswordAuthentication = false; }; home-manager.users.tdpeuter = {