mirror of
https://github.com/hyprwm/hyprland-infra.git
synced 2025-05-12 21:30:36 +01:00
13 lines
267 B
Nix
13 lines
267 B
Nix
{lib, ...}: let
|
|
userLib = import ./lib.nix {inherit lib;};
|
|
in {
|
|
users.users."mihai" = {
|
|
uid = userLib.mkUid "mihi";
|
|
openssh.authorizedKeys.keyFiles = [./keys/mihai];
|
|
isNormalUser = true;
|
|
extraGroups = [
|
|
"wheel"
|
|
"trusted"
|
|
];
|
|
};
|
|
}
|