diff options
author | lassulus <lass@aidsballs.de> | 2015-07-16 15:49:57 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-07-16 15:49:57 +0200 |
commit | 95ee0e40b54225c9bfea049bfe366c3c27a912bf (patch) | |
tree | f53e03f6672088c9da435167a57dc7de851d4059 /3modules | |
parent | 7fa711c4fa8992ed92fa0e2e5c169bdeb4de62b9 (diff) |
3 lass.xresources: init
Diffstat (limited to '3modules')
-rw-r--r-- | 3modules/lass/xresources.nix | 57 |
1 files changed, 57 insertions, 0 deletions
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 + ''; + }; + +} |