mirror of
https://codeberg.org/mtxyz/nixconf.git
synced 2024-11-09 18:12:02 +00:00
39 lines
743 B
Nix
39 lines
743 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
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 = "";
|
|
} // cfg.extraOptions;
|
|
|
|
users.defaultUserShell = pkgs.fish;
|
|
programs.fish.enable = true;
|
|
};
|
|
}
|