nix/home/user/Dasha.nix

30 lines
596 B
Nix
Raw Normal View History

{ lib
, config
, ... }: with lib; let
2024-06-25 04:04:39 +03:00
cfg = config.user.dasha;
in {
options = {
user.dasha = {
enable = mkEnableOption "dasha";
};
2024-06-25 04:04:39 +03:00
};
config = mkIf cfg.enable {
home.nixos.users = [{ username = "dasha"; homeDirectory = "/home/dasha"; }];
2024-06-25 04:04:39 +03:00
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"
];
};
};
}