nixconf/modules/nixos/user/default.nix

40 lines
743 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
2024-01-15 22:30:41 +00:00
}:
let
inherit (lib) types;
cfg = config.mtxyz.user;
in {
options.mtxyz.user = {
extraGroups = lib.mkOption {
type = (types.listOf types.str);
default = [ ];
};
extraOptions = lib.mkOption {
type = types.attrs;
default = { };
};
name = lib.mkOption {
type = types.str;
default = "mtxyz";
};
};
config = {
users.users.${cfg.name} = {
openssh.authorizedKeys.keyFiles = [
./authorized_keys
];
isNormalUser = true;
extraGroups = [ "wheel" "dialout" ] ++ cfg.extraGroups;
initialPassword = "";
2024-01-15 22:30:41 +00:00
} // cfg.extraOptions;
users.defaultUserShell = pkgs.fish;
programs.fish.enable = true;
};
}