diff --git a/env/nix/modules/users/daniel.nix b/env/nix/modules/users/daniel.nix index d7a593a..771abdf 100644 --- a/env/nix/modules/users/daniel.nix +++ b/env/nix/modules/users/daniel.nix @@ -33,8 +33,9 @@ autoconf ncurses weechat + python39Full jq - xfce.thunar xfce.thunar-archive-plugin # xfce.thunar-volman + xfce.thunar xfce.thunar-archive-plugin xfce.thunar-volman ]; }; } diff --git a/env/nix/profiles/base.nix b/env/nix/profiles/base.nix index 0493c73..86f506a 100644 --- a/env/nix/profiles/base.nix +++ b/env/nix/profiles/base.nix @@ -8,8 +8,8 @@ nixpkgs.config.allowUnfree = true; - i18n.defaultLocale = "en_US.UTF-8"; - time.timeZone = "America/Chicago"; + i18n.defaultLocale = "en_US.UTF-8"; + time.timeZone = "America/Chicago"; environment = { systemPackages = with pkgs; [ @@ -29,7 +29,7 @@ }; }; - programs = { + programs = { gnupg.agent = { enable = true; enableSSHSupport = true; @@ -37,8 +37,12 @@ }; }; - services = { - openssh.enable = true; + services = { + openssh = { + enable = true; + passwordAuthentication = false; + permitRootLogin = "no"; + }; }; console = {