mirror of
https://github.com/genebean/dots.git
synced 2026-05-30 23:35:22 -04:00
Enable KDE's RDP bits and setup Tailscale
This commit is contained in:
parent
859a573954
commit
12a102a0bd
2 changed files with 23 additions and 3 deletions
|
|
@ -97,6 +97,17 @@ in
|
|||
printing.enable = true; # Enable CUPS
|
||||
pulseaudio.enable = false;
|
||||
smartd.enable = true;
|
||||
tailscale = {
|
||||
enable = true;
|
||||
authKeyFile = config.sops.secrets.tailscale_key.path;
|
||||
extraUpFlags = [
|
||||
"--operator"
|
||||
"${username}"
|
||||
"--ssh"
|
||||
];
|
||||
useRoutingFeatures = "client";
|
||||
};
|
||||
thermald.enable = true;
|
||||
xserver = {
|
||||
enable = true;
|
||||
xkb = {
|
||||
|
|
@ -114,6 +125,9 @@ in
|
|||
owner = "${username}";
|
||||
path = "${config.users.users.${username}.home}/.private-env";
|
||||
};
|
||||
tailscale_key = {
|
||||
restartUnits = [ "tailscaled-autoconnect.service" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -132,4 +146,9 @@ in
|
|||
# thunderbird
|
||||
];
|
||||
};
|
||||
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
extraPortals = [ pkgs.kdePackages.xdg-desktop-portal-kde ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue