Seperate user

This commit is contained in:
willifan 2024-05-11 21:26:33 +02:00
parent 347b20d668
commit 641cf5ad70
36 changed files with 196 additions and 222 deletions

9
users/willifan/user.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
users.users.willifan = {
isNormalUser = true;
description = "willifan";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [];
};
}