diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-11-14 16:28:24 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-11-14 16:28:24 -0700 |
| commit | 56897d3b21d8daf1aaa7ae4fa849dd4d8f539380 (patch) | |
| tree | 59c681dde5230d1d2cf6d549014bb3820367b81c | |
| parent | 6a22f44a9a1a2dea02d7ff31b6ab8121c25b5cf1 (diff) | |
gui passthrough server
| -rw-r--r-- | machines/doretta/configuration.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/machines/doretta/configuration.nix b/machines/doretta/configuration.nix index 0d20b83..0915b7d 100644 --- a/machines/doretta/configuration.nix +++ b/machines/doretta/configuration.nix @@ -42,9 +42,9 @@ # Enable the X11 windowing system. services.xserver.enable = true; - # Enable the Plasma 5 Desktop Environment. + # Enable the Plasma 6 Desktop Environment. services.displayManager.sddm.enable = true; - # services.xserver.desktopManager.plasma5.enable = true; + services.desktopManager.plasma6.enable = true; # Enable CUPS to print documents. # services.printing.enable = true; @@ -62,7 +62,10 @@ }; # Enable the OpenSSH daemon. - services.openssh.enable = true; + services.openssh = { + enable = true; + forwardX11 = true; + }; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; |
