diff options
author | azahi <azat@bahawi.net> | 2025-03-12 20:17:13 +0300 |
---|---|---|
committer | azahi <azat@bahawi.net> | 2025-03-12 20:17:13 +0300 |
commit | c81dc5a13b469c511fac6fa2390b70422d1b4da5 (patch) | |
tree | 4dab5909006ab5c25da6bd9fde6a714c7719ded7 /configurations/eonwe/default.nix | |
parent | 2025-02-17 (diff) |
Diffstat (limited to 'configurations/eonwe/default.nix')
-rw-r--r-- | configurations/eonwe/default.nix | 15 |
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 = |