mirror of
https://git.sr.ht/~azikx/karbur
synced 2024-10-30 13:26:20 +00:00
13 lines
241 B
Nix
13 lines
241 B
Nix
{ pkgs, ... }: {
|
|
users = {
|
|
users = { # USERS
|
|
dragora = {
|
|
shell = pkgs.fish;
|
|
isNormalUser = true;
|
|
extraGroups = [ "networkmanager" "wheel" "video" ];
|
|
};
|
|
};
|
|
};
|
|
system.stateVersion = "24.05";
|
|
}
|