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