nix/user/Dasha.nix

33 lines
658 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
2024-12-02 21:12:45 +03:00
lib,
pkgs,
2024-11-04 04:37:29 +03:00
...
}: 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.dasha = lib.mkEnableOption "dasha.";
2024-06-25 04:04:39 +03:00
2024-11-16 06:38:48 +03:00
config = lib.mkIf cfg.dasha {
2024-12-02 21:12:45 +03:00
environment.systemPackages = with pkgs; [ nautilus ]; # NOTE: She wants it.
2024-11-04 04:37:29 +03:00
home.nixos.users = [{
homeDirectory = "/home/dasha";
username = "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"
];
};
};
}