nix/user/Dasha.nix

28 lines
473 B
Nix
Raw Normal View History

{ const
, util
, style
, pkgs
, lib
, config
, key
, secret
, ... } @args: {
imports = [
2024-04-14 23:37:48 +03:00
(import ./common (args // {
username = "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 = [
"networkmanager"
"video"
];
};
}