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

13 lines
254 B
Nix
Raw Normal View History

2024-10-26 09:23:16 +00:00
{ pkgs, comp, ... }: {
2024-10-22 00:52:33 +00:00
system.stateVersion = "24.05";
2024-10-18 07:16:37 +00:00
users = {
users = { # USERS
2024-10-26 09:23:16 +00:00
"${comp.user}" = {
2024-10-18 07:16:37 +00:00
shell = pkgs.fish;
isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" "video" ];
};
};
};
}