nix/user/Voronind.nix

35 lines
591 B
Nix
Raw Normal View History

{ const
, util
, style
, pkgs
, lib
, config
, key
, secret
2024-06-25 04:04:39 +03:00
, ... } @args: with lib; let
cfg = config.user.voronind;
in {
options = {
user.voronind.enable = mkEnableOption "voronind";
};
config = mkIf cfg.enable {
user.common.users = [{ name = "voronind"; homeDir = "/home/voronind"; }];
2024-03-29 14:40:33 +03:00
2024-06-25 04:04:39 +03:00
users.users.voronind = {
createHome = true;
description = "Dmitry Voronin";
hashedPassword = secret.hashedPassword;
isNormalUser = true;
uid = 1000;
extraGroups = [
"input"
"keyd"
"libvirtd"
"networkmanager"
"video"
];
};
};
}