2015-05-03 10:01:00 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
#TODO:
|
|
|
|
#prefix with Attribute Name
|
|
|
|
#ex: urxvt
|
|
|
|
|
|
|
|
#
|
|
|
|
#
|
|
|
|
with builtins;
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
inherit (import ../../lib { inherit pkgs; }) 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 {
|
2015-05-05 15:16:57 +00:00
|
|
|
services.xserver.displayManager.sessionCommands = ''
|
|
|
|
echo ${shell-escape xres} | xrdb -merge
|
|
|
|
'';
|
2015-05-03 10:01:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|