nix-dotfiles/hosts/modules/user.nix
2025-07-01 10:28:17 -06:00

18 lines
381 B
Nix

{pkgs, ...}: {
# Define a user account. Don't forget to set a password with 'passwd'.
users.users.cobray = {
isNormalUser = true;
description = "Mon Aie";
extraGroups = ["networkmanager" "wheel" "docker" "video"];
shell = pkgs.fish;
};
security.sudo = {
enable = true;
wheelNeedsPassword = true;
};
programs.fish = {
enable = true;
};
}