infra/modules/nixos/remote-builder.nix

14 lines
204 B
Nix
Raw Normal View History

{
imports = [
2023-09-24 08:57:55 +10:00
../shared/remote-builder.nix
];
users.users.nix = {
isNormalUser = true;
group = "nix";
home = "/var/lib/nix";
createHome = true;
};
users.groups.nix = { };
}