Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update android-nixpkgs

+12 -12
+3 -3
flake.lock
··· 54 54 ] 55 55 }, 56 56 "locked": { 57 - "lastModified": 1773779935, 58 - "narHash": "sha256-O+cWba5TihRfwThiTBaM8iz0by6GuckfsYkJLhsa5Ho=", 57 + "lastModified": 1775680940, 58 + "narHash": "sha256-gFutz9eAiu3laqoP8YZJ1wDKYB8ILwTCzNsMpzgNFwg=", 59 59 "owner": "tadfisher", 60 60 "repo": "android-nixpkgs", 61 - "rev": "ddc7380cd0d47ec138499a4d5d0adfa25ab22dae", 61 + "rev": "8c228a25c9f28131d5467c550a4f8694a2692452", 62 62 "type": "github" 63 63 }, 64 64 "original": {
+9 -9
modules/server/sshd.nix
··· 19 19 }; 20 20 }; 21 21 22 - config = mkIf cfg.sshd.enable { 22 + config = mkIf cfg.sshd.enable ({ 23 23 modules.server.sshd.allowUsers = [ user ]; 24 24 25 25 users.users."${user}".openssh.authorizedKeys.keys = [ 26 26 "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGgNlwxQFRcZjnOyoNQ9HDkhGrESU8J5fwd0HeF6CiYg" 27 27 ]; 28 - 29 - systemd.services.sshd.serviceConfig = helpers.linuxAttrs { 30 - MemoryMax = "8G"; 31 - MemoryHigh = "6G"; 32 - CPUWeight = 80; 33 - TasksMax = 256; 34 - }; 35 28 36 29 services.openssh = { 37 30 enable = true; ··· 55 48 AllowUsers = cfg.sshd.allowUsers; 56 49 }; 57 50 }; 58 - }; 51 + } // helpers.linuxAttrs { 52 + systemd.services.sshd.serviceConfig = { 53 + MemoryMax = "8G"; 54 + MemoryHigh = "6G"; 55 + CPUWeight = 80; 56 + TasksMax = 256; 57 + }; 58 + }); 59 59 }