1
0
Fork 0
mirror of https://git.sr.ht/~azikx/karbur synced 2024-10-30 11:26:21 +00:00
karbur/host/misc/user.nix

13 lines
241 B
Nix
Raw Normal View History

2024-10-19 11:45:18 +00:00
{ pkgs, ... }: {
2024-10-18 07:16:37 +00:00
users = {
users = { # USERS
dragora = {
shell = pkgs.fish;
isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" "video" ];
};
};
};
system.stateVersion = "24.05";
}