diff options
| -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 = [ ... ]; |
