about summary refs log tree commit diff
path: root/configurations/eonwe/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'configurations/eonwe/default.nix')
-rw-r--r--configurations/eonwe/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/configurations/eonwe/default.nix b/configurations/eonwe/default.nix
index d6bc46c..d88f31e 100644
--- a/configurations/eonwe/default.nix
+++ b/configurations/eonwe/default.nix
@@ -17,7 +17,10 @@
 
     openssh.server = {
       enable = true;
-      port = 22;
+      ports = [
+        22
+        22022
+      ];
     };
 
     android.enable = true;
@@ -165,11 +168,6 @@
       };
     };
 
-    openssh.settings = {
-      KbdInteractiveAuthentication = lib.mkForce true;
-      PasswordAuthentication = lib.mkForce true;
-    };
-
     udev.packages = [ pkgs.vial ];
 
     xserver.wacom.enable = true;
@@ -315,7 +313,10 @@
     };
   };
 
-  nix.settings.trusted-users = [ "builder" ];
+  nix.settings = {
+    trusted-users = [ "builder" ];
+    system-features = [ "big-parallel" ];
+  };
 
   # https://cl.tvl.fyi/c/depot/+/12961
   systemd.services =

Consider giving Nix/NixOS a try! <3