nix/user/Voronind.nix

18 lines
308 B
Nix
Raw Normal View History

2024-03-04 23:11:23 +03:00
{ pkgs, lib, const, ... }: {
imports = [
./home/Voronind.nix
];
2024-03-29 14:40:33 +03:00
users.users.voronind = {
createHome = true;
description = "Dmitry Voronin";
hashedPassword = const.hashedPassword;
isNormalUser = true;
uid = 1000;
extraGroups = [
"networkmanager"
"video"
];
};
}