Progress rewrite further

This commit is contained in:
caem 2025-01-10 23:38:56 +01:00
parent bc6d1e6984
commit b00e1c1c9d
Signed by: caem
GPG key ID: 69A830D03203405F
15 changed files with 169 additions and 44 deletions

View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
users.users.caem = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [
"wheel"
];
};
}