1
0
Fork 0
mirror of https://git.sr.ht/~azikx/wyswort synced 2024-10-30 11:26:20 +00:00
wyswort/host/misc/user.nix
2024-10-15 22:18:01 +09:00

13 lines
242 B
Nix

{ pkgs, ... }: {
users = {
users = { # USERS
megamozg = {
shell = pkgs.fish;
isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" "video" ];
};
};
};
system.stateVersion = "24.05";
}