From 95ee0e40b54225c9bfea049bfe366c3c27a912bf Mon Sep 17 00:00:00 2001 From: lassulus Date: Thu, 16 Jul 2015 15:49:57 +0200 Subject: 3 lass.xresources: init --- 3modules/lass/xresources.nix | 57 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 3modules/lass/xresources.nix (limited to '3modules') diff --git a/3modules/lass/xresources.nix b/3modules/lass/xresources.nix new file mode 100644 index 000000000..15c5b8b74 --- /dev/null +++ b/3modules/lass/xresources.nix @@ -0,0 +1,57 @@ +{ config, lib, pkgs, ... }: + +#TODO: +#prefix with Attribute Name +#ex: urxvt + +# +# +with builtins; +with lib; + + +let + + inherit (import ../../4lib/tv { inherit pkgs lib; }) shell-escape; + inherit (pkgs) writeScript; + +in + +{ + + options = { + services.xresources.enable = mkOption { + type = types.bool; + default = false; + description = '' + Whether to enable the automatic loading of Xresources definitions at display-manager start; + ''; + }; + + services.xresources.resources = mkOption { + default = {}; + type = types.attrsOf types.str; + example = { + urxvt = '' + URxvt*scrollBar: false + URxvt*urgentOnBell: true + ''; + }; + description = '' + Xresources definitions. + ''; + }; + }; + + config = + let + cfg = config.services.xresources; + xres = concatStringsSep "\n" (attrValues cfg.resources); + + in mkIf cfg.enable { + services.xserver.displayManager.sessionCommands = '' + echo ${shell-escape xres} | xrdb -merge + ''; + }; + +} -- cgit v1.2.3 [cgit] Unable to lock slot /tmp/cgit/1a300000.lock: No such file or directory (2)