nix/user/Voronind.nix

15 lines
329 B
Nix
Raw Normal View History

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