nix/user/Dasha.nix

35 lines
627 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.dasha;
in {
options = {
user.dasha.enable = mkEnableOption "dasha";
};
config = mkIf cfg.enable {
user.common.users = [{ name = "dasha"; homeDir = "/home/dasha"; }];
users.users.dasha = {
createHome = true;
description = "Daria Dranchak";
hashedPassword = "$y$j9T$WGMPv/bRhGBUidcZLZ7CE/$raZhwFFdI/XvegVZVHLILJLMiBkOxSErc6gao/Cxt33";
isNormalUser = true;
uid = 1001;
extraGroups = [
"input"
"keyd"
"libvirtd"
"networkmanager"
"video"
];
};
};
}