Separate out user configurations

This commit is contained in:
Nettika 2024-06-10 20:49:50 -07:00
parent de67011773
commit 8acdb45ac1
2 changed files with 12 additions and 9 deletions

9
users.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, modulesPath, ... }:
{
users.users = {
nettika = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
};
}