diff options
Diffstat (limited to 'nixos')
| -rw-r--r-- | nixos/hosts/bin/configuration.nix | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/nixos/hosts/bin/configuration.nix b/nixos/hosts/bin/configuration.nix index a52d70b..e71e692 100644 --- a/nixos/hosts/bin/configuration.nix +++ b/nixos/hosts/bin/configuration.nix @@ -50,14 +50,21 @@ shell = pkgs.fish; }; -environment.systemPackages = with pkgs; [ + environment.systemPackages = with pkgs; [ git neovim btop ]; -documentation.enable = false; -documentation.man.enable = false; + services.openssh = { + enable = true; + settings = { + PasswordAuthentication = true; + }; + }; + + documentation.enable = false; + documentation.man.enable = false; system.stateVersion = "26.05"; } |
