summaryrefslogtreecommitdiff
path: root/hosts/eostre
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/eostre')
-rw-r--r--hosts/eostre/default.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/hosts/eostre/default.nix b/hosts/eostre/default.nix
index 01dee9ae..2752d136 100644
--- a/hosts/eostre/default.nix
+++ b/hosts/eostre/default.nix
@@ -4,7 +4,7 @@ with lib;
4 4
5{ 5{
6 imports = with flake.nixosModules.systemProfiles; [ 6 imports = with flake.nixosModules.systemProfiles; [
7 default-locale nfsroot 7 default-locale nfsroot openssh
8 ]; 8 ];
9 9
10 config = { 10 config = {
@@ -96,5 +96,14 @@ with lib;
96 96
97 videoDrivers = [ "nvidia" ]; 97 videoDrivers = [ "nvidia" ];
98 }; 98 };
99
100
101 services.openssh = {
102 enable = true;
103 settings = {
104 PasswordAuthentication = true;
105 KbdInteractiveAuthentication = true;
106 };
107 };
99 }; 108 };
100} 109}