diff --git a/modules/desktop/editors/vscodium.nix b/modules/desktop/editors/vscodium.nix index 73e5889..c68ccf8 100644 --- a/modules/desktop/editors/vscodium.nix +++ b/modules/desktop/editors/vscodium.nix @@ -2,6 +2,7 @@ let inherit (lib.meta) getExe; inherit (lib.modules) mkIf; + inherit (lib.attrsets) attrValues; cfg = config.modules.desktop.editors.vscodium; in diff --git a/modules/networking/ssh.nix b/modules/networking/ssh.nix index 7d254c9..50c3560 100644 --- a/modules/networking/ssh.nix +++ b/modules/networking/ssh.nix @@ -1,6 +1,7 @@ { config, options, lib, pkgs, ... }: let inherit (lib.modules) mkIf; + inherit (lib.attrsets) attrValues; in { options.modules.networking.ssh = let @@ -16,7 +17,7 @@ in ports = [ 22 ]; settings = { PassswordAuthentication = true; - AllowUsers = [ "chris", "root" ]; + AllowUsers = [ "chris" "root" ]; UseDns = true; UsePAM = true; PermitRootLogin = "prohibit-password";