Enable KDE's RDP bits and setup Tailscale

This commit is contained in:
Gene Liverman 2026-05-29 15:34:36 -04:00
parent 859a573954
commit 12a102a0bd
No known key found for this signature in database
2 changed files with 23 additions and 3 deletions

View file

@ -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 ];
};
}