config/modules/base/users/default.nix

73 lines
1.7 KiB
Nix
Raw Normal View History

2023-07-20 15:02:38 +03:00
{
config,
lib,
myData,
...
2023-10-01 23:14:05 +03:00
}: let
cfg = config.mj.base.users;
in {
2023-07-20 15:02:38 +03:00
options.mj.base.users = with lib.types; {
2024-02-04 16:18:47 +02:00
enable = lib.mkEnableOption "enable motiejus and root";
2024-02-04 22:05:44 +02:00
devTools = lib.mkOption {
2023-10-09 22:07:42 +03:00
type = bool;
default = false;
};
2023-07-20 15:02:38 +03:00
passwd = lib.mkOption {
2023-10-01 23:14:05 +03:00
type = attrsOf (submodule {
options = {
2023-11-27 17:54:44 +02:00
hashedPasswordFile = lib.mkOption {
2023-10-01 23:14:05 +03:00
type = nullOr path;
default = null;
};
initialPassword = lib.mkOption {
type = nullOr str;
default = null;
};
2023-09-13 12:17:43 +03:00
2023-10-01 23:14:05 +03:00
extraGroups = lib.mkOption {
type = listOf str;
default = [];
2023-07-20 15:02:38 +03:00
};
2023-10-01 23:14:05 +03:00
};
});
2023-07-20 15:02:38 +03:00
};
};
2024-02-04 16:18:47 +02:00
config = lib.mkIf cfg.enable {
2023-07-20 15:02:38 +03:00
users = {
mutableUsers = false;
2023-10-01 23:14:05 +03:00
users = {
2023-07-20 15:02:38 +03:00
motiejus =
{
isNormalUser = true;
2023-10-01 23:14:05 +03:00
extraGroups = ["wheel"] ++ cfg.passwd.motiejus.extraGroups;
2023-07-24 16:31:38 +03:00
uid = myData.uidgid.motiejus;
2023-10-06 08:58:28 +03:00
openssh.authorizedKeys.keys = [
myData.people_pubkeys.motiejus
];
2023-07-20 15:02:38 +03:00
}
// lib.filterAttrs (
n: v:
2023-11-27 17:54:44 +02:00
(n == "hashedPasswordFile" || n == "initialPassword") && v != null
)
2023-10-01 23:14:05 +03:00
cfg.passwd.motiejus or {};
2023-07-20 15:02:38 +03:00
2023-10-01 23:14:05 +03:00
root = assert lib.assertMsg (cfg.passwd ? root) "root password needs to be defined";
lib.filterAttrs (_: v: v != null) cfg.passwd.root;
2023-07-20 15:02:38 +03:00
};
};
2023-08-18 16:30:26 +03:00
home-manager.useGlobalPkgs = true;
home-manager.users.motiejus = {pkgs, ...}:
2024-02-04 22:23:56 +02:00
import ../../../shared/home/default.nix {
inherit lib;
inherit pkgs;
inherit (config.mj) stateVersion;
inherit (cfg) devTools;
hmOnly = false;
email = "motiejus@jakstys.lt";
};
2023-07-20 15:02:38 +03:00
};
}