infra/modules/nixos/remote-builder.nix
2024-07-24 10:27:26 +00:00

11 lines
198 B
Nix

{
imports = [ ../shared/remote-builder.nix ];
users.users.nix = {
isNormalUser = true;
group = "nix";
home = "/var/lib/nix";
createHome = true;
};
users.groups.nix = { };
}