summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMichael Peyton Jones <me@michaelpj.com>2017-10-21 23:03:34 +0100
committerRobin Gloster <mail@glob.in>2017-10-22 00:18:21 +0200
commit0966f8282a22bb38d301db22e198954eacb90d52 (patch)
tree382cb42d1caab5d2789437fe901c0eb6a05bb47d /nixos
parentf0fd8e34e7e2d8cba7d027521c0008f485e2c161 (diff)
downloadnixlib-0966f8282a22bb38d301db22e198954eacb90d52.tar
nixlib-0966f8282a22bb38d301db22e198954eacb90d52.tar.gz
nixlib-0966f8282a22bb38d301db22e198954eacb90d52.tar.bz2
nixlib-0966f8282a22bb38d301db22e198954eacb90d52.tar.lz
nixlib-0966f8282a22bb38d301db22e198954eacb90d52.tar.xz
nixlib-0966f8282a22bb38d301db22e198954eacb90d52.tar.zst
nixlib-0966f8282a22bb38d301db22e198954eacb90d52.zip
plasma5: use mkDefault for a few options that users might want to set
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/desktop-managers/plasma5.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix
index b9498b1627fb..685a93d952b1 100644
--- a/nixos/modules/services/x11/desktop-managers/plasma5.nix
+++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix
@@ -175,7 +175,7 @@ in
         serif = [ "Noto Serif" ];
       };
 
-      programs.ssh.askPassword = "${plasma5.ksshaskpass.out}/bin/ksshaskpass";
+      programs.ssh.askPassword = mkDefault "${plasma5.ksshaskpass.out}/bin/ksshaskpass";
 
       # Enable helpful DBus services.
       services.udisks2.enable = true;
@@ -190,7 +190,7 @@ in
       ];
 
       services.xserver.displayManager.sddm = {
-        theme = "breeze";
+        theme = mkDefault "breeze";
       };
 
       security.pam.services.kde = { allowNullPassword = true; };