From 2915a5b1b5f57fbb84b0320a519fbc07fc380f7b Mon Sep 17 00:00:00 2001 From: Aditya Date: Mon, 25 Mar 2024 20:03:03 +0530 Subject: [PATCH] add uid gid --- configuration.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/configuration.nix b/configuration.nix index 010e012..6859893 100644 --- a/configuration.nix +++ b/configuration.nix @@ -210,6 +210,21 @@ networking = { networkmanagerapplet ]; }; + + users.users.root = { + subUidRanges = [ + { + count = 1000; + startUid = 1000; + } + ]; + subGidRanges = [ + { + count = 1000; + startGid = 1000; + } + ]; + }; home-manager = { extraSpecialArgs = { inherit inputs; };