summaryrefslogtreecommitdiff
path: root/hosts/eostre
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2023-03-20 11:51:00 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2023-03-20 11:51:00 +0100
commit89749d73a82bd0bfdfa225be06a6db8e82371ff4 (patch)
treea4a165b5072fa18331493b136766dda1b1014897 /hosts/eostre
parente46c80fd66956713569be4bec940b958d235e451 (diff)
downloadnixos-89749d73a82bd0bfdfa225be06a6db8e82371ff4.tar
nixos-89749d73a82bd0bfdfa225be06a6db8e82371ff4.tar.gz
nixos-89749d73a82bd0bfdfa225be06a6db8e82371ff4.tar.bz2
nixos-89749d73a82bd0bfdfa225be06a6db8e82371ff4.tar.xz
nixos-89749d73a82bd0bfdfa225be06a6db8e82371ff4.zip
...
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}