plasma6: correct option as per upstream

This commit is contained in:
Payas Relekar 2024-03-14 13:06:55 +05:30
parent 50d8a4082e
commit f7eecb02f0
2 changed files with 4 additions and 3 deletions

View file

@ -19,15 +19,16 @@
time.timeZone = "Asia/Kolkata"; time.timeZone = "Asia/Kolkata";
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = true;
services.xserver = { services.xserver = {
enable = true;
displayManager.sddm.enable = true; displayManager.sddm.enable = true;
desktopManager.plasma6.enable = true;
monitorSection = '' monitorSection = ''
Option "Rotate" "right" Option "Rotate" "right"
''; '';
}; };
services.desktopManager.plasma6.enable = true;
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;

View file

@ -2,6 +2,7 @@
{ {
services = { services = {
desktopManager.plasma6.enable = true;
xserver = { xserver = {
enable = true; enable = true;
dpi = 96; dpi = 96;
@ -14,7 +15,6 @@
}; };
defaultSession = "plasma"; defaultSession = "plasma";
}; };
desktopManager.plasma6.enable = true;
# Enable touchpad support. # Enable touchpad support.
libinput.enable = true; libinput.enable = true;
}; };