summary refs log tree commit diff
path: root/nixos/modules/programs/venus.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-09-24 11:42:32 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-09-24 11:50:58 +0200
commit89e983786a4e2cf6dd238af4df6da373cc01e62b (patch)
tree857ecb8eab59fe1855b1fb311e6e1e9ec8303bdc /nixos/modules/programs/venus.nix
parente73b19ae4e984f58cebe4dd4f82cda622da552ab (diff)
downloadnixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.gz
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.bz2
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.lz
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.xz
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.tar.zst
nixlib-89e983786a4e2cf6dd238af4df6da373cc01e62b.zip
Manual: Remove store path references
Diffstat (limited to 'nixos/modules/programs/venus.nix')
-rw-r--r--nixos/modules/programs/venus.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/programs/venus.nix b/nixos/modules/programs/venus.nix
index ca3188b18199..8f85b602fe2c 100644
--- a/nixos/modules/programs/venus.nix
+++ b/nixos/modules/programs/venus.nix
@@ -99,7 +99,6 @@ in
       };
 
       outputTheme = mkOption {
-        default = "${pkgs.venus}/themes/classic_fancy";
         type = types.path;
         description = ''
           Directory containing a config.ini file which is merged with this one.
@@ -170,5 +169,7 @@ in
         startAt = cfg.dates;
       };
 
+    services.venus.outputTheme = mkDefault "${pkgs.venus}/themes/classic_fancy";
+
   };
 }