nix/user/Voronind.nix

18 lines
310 B
Nix
Raw Normal View History

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