infra/modules/nixos/remote-builder.nix
2023-09-26 21:32:17 +00:00

13 lines
204 B
Nix

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