mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 19:52:52 +00:00
add uid gid
This commit is contained in:
parent
560cd525d2
commit
2915a5b1b5
1 changed files with 15 additions and 0 deletions
|
@ -210,6 +210,21 @@ networking = {
|
|||
networkmanagerapplet
|
||||
];
|
||||
};
|
||||
|
||||
users.users.root = {
|
||||
subUidRanges = [
|
||||
{
|
||||
count = 1000;
|
||||
startUid = 1000;
|
||||
}
|
||||
];
|
||||
subGidRanges = [
|
||||
{
|
||||
count = 1000;
|
||||
startGid = 1000;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
|
|
Loading…
Reference in a new issue