flake/modules/users/lyn/default.nix
2024-10-29 08:55:56 +01:00

17 lines
196 B
Nix

{
lib,
pkgs,
config,
cfg,
...
}: {
imports = [
./ssh.nix
];
users.users.lyn = {
isNormalUser = true;
extraGroups = ["wheel"];
packages = with pkgs; [
];
};
}