Add nixremote user for remote building

This commit is contained in:
JuliusFreudenberger 2025-08-25 09:46:56 +02:00
parent 962ee20628
commit ea01c0abf3
2 changed files with 13 additions and 0 deletions

12
users/nixremote.nix Normal file
View file

@ -0,0 +1,12 @@
{
...
}: {
users.users = {
nixremote = {
isNormalUser = true;
uid = 1100;
group = "users";
expires = "1970-01-01";
}
};
}