Separated out shared.nix into headful and headless nix config files

This commit is contained in:
Random936
2024-07-04 18:31:09 -07:00
parent 2f097552b6
commit 8de0666cc5
5 changed files with 69 additions and 68 deletions

8
config/user.nix Normal file
View File

@@ -0,0 +1,8 @@
# Generic user configuration.
# Don't forget to set a password with passwd.
{
isNormalUser = true;
useDefaultShell = true;
description = "random";
extraGroups = [ "networkmanager" "wheel" "docker" ];
}