Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Assign static user IDs to all normal users

encode42 9a4919c6 26c93416

+6
+2
hosts/prospect/users/guest.nix
··· 39 39 isNormalUser = true; 40 40 41 41 description = "Guest"; 42 + 43 + uid = 1100; 42 44 }; 43 45 44 46 home-manager.users.guest = {
+2
users/career/common/user.nix
··· 5 5 isNormalUser = true; 6 6 7 7 shell = pkgs.fish; 8 + 9 + uid = 1099; 8 10 }; 9 11 }
+2
users/encode42/common/user.nix
··· 5 5 isNormalUser = true; 6 6 7 7 shell = pkgs.fish; 8 + 9 + uid = 1000; 8 10 }; 9 11 }