infra/modules/nixos/remote-builder.nix

12 lines
198 B
Nix
Raw Permalink Normal View History

{
2024-07-24 19:05:26 +10:00
imports = [ ../shared/remote-builder.nix ];
users.users.nix = {
isNormalUser = true;
group = "nix";
home = "/var/lib/nix";
createHome = true;
};
users.groups.nix = { };
}