flake/users/lyn/default.nix

12 lines
185 B
Nix
Raw Permalink Normal View History

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