20 lines
466 B
Nix
20 lines
466 B
Nix
{ const, util, style, pkgs, lib, setting, key, secret, ... } @args: {
|
|
imports = [
|
|
(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"
|
|
];
|
|
};
|
|
}
|