2024-10-11 23:27:07 +03:00
|
|
|
{
|
2024-11-04 04:37:29 +03:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
secret,
|
|
|
|
...
|
|
|
|
}: let
|
2024-11-16 06:38:48 +03:00
|
|
|
cfg = config.user;
|
2024-11-04 04:37:29 +03:00
|
|
|
in {
|
2024-11-16 06:38:48 +03:00
|
|
|
options.user.voronind = lib.mkEnableOption "voronind.";
|
2024-06-25 04:04:39 +03:00
|
|
|
|
2024-11-16 06:38:48 +03:00
|
|
|
config = lib.mkIf cfg.voronind {
|
2024-11-04 04:37:29 +03:00
|
|
|
home.nixos.users = [{
|
|
|
|
homeDirectory = "/home/voronind";
|
|
|
|
username = "voronind";
|
|
|
|
}];
|
|
|
|
users.users.voronind = {
|
|
|
|
createHome = true;
|
|
|
|
description = "Dmitry Voronin";
|
|
|
|
hashedPassword = secret.hashedPassword;
|
|
|
|
isNormalUser = true;
|
|
|
|
uid = 1000;
|
|
|
|
extraGroups = [
|
|
|
|
"input"
|
|
|
|
"keyd"
|
|
|
|
"libvirtd"
|
|
|
|
"networkmanager"
|
|
|
|
"video"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-03-04 00:34:39 +03:00
|
|
|
}
|