2024-03-04 23:11:23 +03:00
|
|
|
{ pkgs, lib, const, ... }: {
|
2024-03-04 00:34:39 +03:00
|
|
|
imports = [
|
|
|
|
./home/Voronind.nix
|
|
|
|
];
|
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-03-28 06:33:58 +03:00
|
|
|
hashedPassword = const.hashedPassword;
|
|
|
|
isNormalUser = true;
|
|
|
|
uid = 1000;
|
|
|
|
extraGroups = [
|
|
|
|
"networkmanager"
|
|
|
|
"video"
|
|
|
|
];
|
2024-03-04 00:34:39 +03:00
|
|
|
};
|
|
|
|
}
|