2015-07-16 13:49:57 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
#TODO:
|
|
|
|
#prefix with Attribute Name
|
|
|
|
#ex: urxvt
|
|
|
|
|
2016-02-15 15:29:01 +00:00
|
|
|
with builtins;
|
|
|
|
with lib;
|
2015-07-16 13:49:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-11-29 14:39:14 +00:00
|
|
|
inherit (pkgs) writeScript writeText;
|
2015-07-16 13:49:57 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
2017-12-15 19:05:06 +00:00
|
|
|
krebs.xresources.enable = mkOption {
|
2015-07-16 13:49:57 +00:00
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable the automatic loading of Xresources definitions at display-manager start;
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-12-15 19:05:06 +00:00
|
|
|
krebs.xresources.resources = mkOption {
|
2015-07-16 13:49:57 +00:00
|
|
|
default = {};
|
|
|
|
type = types.attrsOf types.str;
|
|
|
|
example = {
|
|
|
|
urxvt = ''
|
|
|
|
URxvt*scrollBar: false
|
|
|
|
URxvt*urgentOnBell: true
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
description = ''
|
|
|
|
Xresources definitions.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config =
|
|
|
|
let
|
2017-12-15 19:05:06 +00:00
|
|
|
cfg = config.krebs.xresources;
|
2017-11-29 14:39:14 +00:00
|
|
|
xres = writeText "xresources" (concatStringsSep "\n" (attrValues cfg.resources));
|
2015-07-16 13:49:57 +00:00
|
|
|
|
|
|
|
in mkIf cfg.enable {
|
|
|
|
services.xserver.displayManager.sessionCommands = ''
|
2017-12-03 22:17:25 +00:00
|
|
|
${pkgs.xorg.xrdb}/bin/xrdb -merge ${xres}
|
2015-07-16 13:49:57 +00:00
|
|
|
'';
|
2017-12-04 10:51:25 +00:00
|
|
|
environment.systemPackages = [
|
|
|
|
(pkgs.writeDashBin "updateXresources" ''
|
|
|
|
${pkgs.xorg.xrdb}/bin/xrdb -merge ${xres}
|
|
|
|
'')
|
|
|
|
];
|
2015-07-16 13:49:57 +00:00
|
|
|
};
|
|
|
|
}
|