Files
nixos/modules/core/users.nix
2026-02-04 22:53:00 +01:00

28 lines
411 B
Nix

# modules/core/users.nix
# User accounts and shell configuration
{
config,
pkgs,
lib,
username,
...
}:
{
users.users.${username} = {
isNormalUser = true;
description = "Melvin Ragusa";
extraGroups = [
"wheel"
"networkmanager"
"docker"
"gamemode"
"corectrl"
];
shell = pkgs.fish;
};
programs.fish.enable = true;
programs.zsh.enable = true;
}