From f7eecb02f005dae6feb0362dd9c5c30e697345ed Mon Sep 17 00:00:00 2001 From: Payas Relekar Date: Thu, 14 Mar 2024 13:06:55 +0530 Subject: [PATCH] plasma6: correct option as per upstream --- hosts/phoebe/configuration.nix | 5 +++-- modules/plasma-desktop.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/hosts/phoebe/configuration.nix b/hosts/phoebe/configuration.nix index 950912d..f6b112a 100644 --- a/hosts/phoebe/configuration.nix +++ b/hosts/phoebe/configuration.nix @@ -19,15 +19,16 @@ time.timeZone = "Asia/Kolkata"; # Enable the X11 windowing system. - services.xserver.enable = true; services.xserver = { + enable = true; displayManager.sddm.enable = true; - desktopManager.plasma6.enable = true; monitorSection = '' Option "Rotate" "right" ''; }; + services.desktopManager.plasma6.enable = true; + # Enable CUPS to print documents. services.printing.enable = true; diff --git a/modules/plasma-desktop.nix b/modules/plasma-desktop.nix index d0bd001..2730e1e 100644 --- a/modules/plasma-desktop.nix +++ b/modules/plasma-desktop.nix @@ -2,6 +2,7 @@ { services = { + desktopManager.plasma6.enable = true; xserver = { enable = true; dpi = 96; @@ -14,7 +15,6 @@ }; defaultSession = "plasma"; }; - desktopManager.plasma6.enable = true; # Enable touchpad support. libinput.enable = true; };