2024-04-14 23:37:48 +03:00
|
|
|
{ const, util, style, pkgs, lib, setting, key, secret, ... } @args: {
|
2024-03-04 00:34:39 +03:00
|
|
|
imports = [
|
2024-04-14 23:37:48 +03:00
|
|
|
(import ./common (args // {
|
|
|
|
username = "voronind";
|
|
|
|
homeDir = "/home/voronind";
|
|
|
|
}))
|
2024-03-04 00:34:39 +03:00
|
|
|
];
|
2024-03-29 14:40:33 +03:00
|
|
|
|
2024-03-04 00:34:39 +03:00
|
|
|
users.users.voronind = {
|
|
|
|
createHome = true;
|
|
|
|
description = "Dmitry Voronin";
|
2024-04-14 19:30:03 +03:00
|
|
|
hashedPassword = secret.hashedPassword;
|
2024-03-28 06:33:58 +03:00
|
|
|
isNormalUser = true;
|
|
|
|
uid = 1000;
|
|
|
|
extraGroups = [
|
2024-04-24 04:58:58 +03:00
|
|
|
"keyd"
|
2024-03-28 06:33:58 +03:00
|
|
|
"networkmanager"
|
|
|
|
"video"
|
|
|
|
];
|
2024-03-04 00:34:39 +03:00
|
|
|
};
|
|
|
|
}
|