diff options
| author | caley <u65487754@gmail.com> | 2026-06-22 00:43:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-22 00:43:45 +0200 |
| commit | 2c54ed393e921403506ed1622f58ec79b8512f87 (patch) | |
| tree | 08434185bd4c1492f7ada462bc40f82bc15dd497 | |
| parent | 3b668569ec64efbc6fa8c750069f36f5adffb94a (diff) | |
Update configuration.nix
| -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"; } |
