2024-05-04 23:15:57 +03:00
|
|
|
{ const
|
|
|
|
, util
|
|
|
|
, style
|
|
|
|
, pkgs
|
|
|
|
, lib
|
|
|
|
, setting
|
|
|
|
, key
|
|
|
|
, secret
|
|
|
|
, ... } @args: {
|
2024-03-21 17:42:09 +03:00
|
|
|
imports = [
|
2024-04-14 23:37:48 +03:00
|
|
|
(import ./common (args // {
|
|
|
|
username = "dasha";
|
|
|
|
homeDir = "/home/dasha";
|
|
|
|
}))
|
2024-03-21 17:42:09 +03:00
|
|
|
];
|
2024-03-04 00:34:39 +03:00
|
|
|
users.users.dasha = {
|
|
|
|
createHome = true;
|
|
|
|
description = "Daria Dranchak";
|
2024-03-28 06:33:58 +03:00
|
|
|
hashedPassword = "$y$j9T$WGMPv/bRhGBUidcZLZ7CE/$raZhwFFdI/XvegVZVHLILJLMiBkOxSErc6gao/Cxt33";
|
|
|
|
isNormalUser = true;
|
|
|
|
uid = 1001;
|
|
|
|
extraGroups = [
|
|
|
|
"networkmanager"
|
|
|
|
"video"
|
|
|
|
];
|
2024-03-04 00:34:39 +03:00
|
|
|
};
|
|
|
|
}
|