Doh
Eelco Dolstra committed
Dec 7, 2023 at 09:31 UTC
1ad6f12f2f5f3e9a74afe4b8120629e4531d1bd6
2 files changed
+2
-2
modules/common.nix
+1
-1
@@ -8,7 +8,7 @@ with lib;
8
users.mutableUsers = false;
9
10
users.extraUsers.root.openssh.authorizedKeys.keys =
11
- with import ../ssh-keys.nix; infra-core ++ [ john-ericson ];
11
+ with import ../ssh-keys.nix; infra-core;
12
13
nix.useSandbox = true;
14
nix.buildCores = 0;
ngi0/makemake/flake.nix
+1
-1
@@ -101,7 +101,7 @@
101
boot.loader.grub.copyKernels = true;
102
103
users.extraUsers.root.openssh.authorizedKeys.keys =
104
- (import ../../ssh-keys.nix).ngi-admins;
104
+ with import ../../ssh-keys.nix; ngi-admins ++ [ john-ericson ];
105
})
106
];
107
};