2024-09-03 21:25:47 +02:00
|
|
|
{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-03 21:25:47 +02:00
|
|
|
};
|
2024-09-01 00:06:13 +02:00
|
|
|
}
|