summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2022-07-31 10:40:05 +0300
committerPeter Hoeg <peter@hoeg.com>2022-08-08 22:31:26 +0800
commitd68ba1d746e668865254f03cc4f629d0d1a15f66 (patch)
tree96510ec2d699be3b70d076b806794e9fa9761d5e /nixos
parent5cc12aa8cb650c1541ba7559dc60bf78136f31f8 (diff)
nixos/plasma5: default runUsingSystemd to on
Upstream switched as of 5.25
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/desktop-managers/plasma5.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix
index 5c39de0dde744..2c4b0b8f3ba35 100644
--- a/nixos/modules/services/x11/desktop-managers/plasma5.nix
+++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix
@@ -188,7 +188,7 @@ in
     runUsingSystemd = mkOption {
       description = lib.mdDoc "Use systemd to manage the Plasma session";
       type = types.bool;
-      default = false;
+      default = true;
     };
 
     excludePackages = mkOption {