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-12 18:43:57 +09:00

14 lines
226 B
Nix

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