Add nixremote user for remote building
This commit is contained in:
parent
962ee20628
commit
ea01c0abf3
2 changed files with 13 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
../../modules/disko/efi-full-btrfs.nix
|
../../modules/disko/efi-full-btrfs.nix
|
||||||
|
|
||||||
../../users/julius/nixos-server.nix
|
../../users/julius/nixos-server.nix
|
||||||
|
../../users/nixremote.nix
|
||||||
../../modules/nix.nix
|
../../modules/nix.nix
|
||||||
../../modules/network-server.nix
|
../../modules/network-server.nix
|
||||||
../../modules/locale.nix
|
../../modules/locale.nix
|
||||||
|
|
12
users/nixremote.nix
Normal file
12
users/nixremote.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
users.users = {
|
||||||
|
nixremote = {
|
||||||
|
isNormalUser = true;
|
||||||
|
uid = 1100;
|
||||||
|
group = "users";
|
||||||
|
expires = "1970-01-01";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue