2024-03-04 00:34:39 +03:00
|
|
|
{ pkgs, lib, ... }: {
|
2024-03-21 17:42:09 +03:00
|
|
|
imports = [
|
|
|
|
./home/Dasha.nix
|
|
|
|
];
|
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
|
|
|
};
|
|
|
|
}
|