blob: 8d8715c1d784db7d4679e6c3dc45aa82c70991dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{pkgs, ...}: {
personal.user.enable = true;
users = {
users."nixremote" = {
isSystemUser = true;
shell = pkgs.busybox-sandbox-shell;
group = "nixremote";
openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEgohiYF2Dsaq6ImGaslnKJMwpiVtwAaM9cm1tpSRr7t root@kerberos"];
};
groups.nixremote = {};
};
nix.settings.trusted-users = ["nixremote"];
}
|