stockholm/lass/3modules/xresources.nix

57 lines
1.0 KiB
Nix
Raw Normal View History

2015-07-16 13:49:57 +00:00
{ config, lib, pkgs, ... }:
#TODO:
#prefix with Attribute Name
#ex: urxvt
#
#
2016-02-14 15:43:44 +00:00
with config.krebs.lib;
2015-07-16 13:49:57 +00:00
let
inherit (import ../../tv/4lib { inherit pkgs lib; }) shell-escape;
2015-07-16 13:49:57 +00:00
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
'';
};
}