flake/modules/users/lyn/default.nix

18 lines
196 B
Nix
Raw Normal View History

2024-10-29 08:55:56 +01:00
{
lib,
pkgs,
config,
cfg,
...
}: {
imports = [
./ssh.nix
];
users.users.lyn = {
2024-09-01 00:06:13 +02:00
isNormalUser = true;
2024-10-29 08:55:56 +01:00
extraGroups = ["wheel"];
packages = with pkgs; [
2024-09-01 00:06:13 +02:00
];
2024-10-29 08:55:56 +01:00
};
2024-09-01 00:06:13 +02:00
}