blob: e99985b61b8302577bc426ef7c0d7f7a76404863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
{ config, lib, pkgs, ... }:
#TODO:
#prefix with Attribute Name
#ex: urxvt
#TODO: make users configureable
#
#we need something like this:
#
#a.u = [1 2];
#a.x = "test";
#b.u = [1];
#b.x = "tast";
# |
# v
#1."test\ntast";
#2."test";
#
#
#users = mkOption {
# type = types.str;
# default = ;
# description = ''
# users for this xresources config.
# '';
#};
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.user = mkOption {
type = types.str;
default = "nobody";
description = ''
The user the xresources should be loaded as.
'';
};
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;
user = cfg.user;
xres = concatStringsSep "\n" (attrValues cfg.resources);
mkService = user: xres: rec {
description = "xresources managment script";
requires = [ "display-manager.service" ];
after = requires;
path = [ pkgs.xlibs.xrdb ];
#TODO: make DISPLAY configurable
environment = {
DISPLAY = ":0";
};
serviceConfig = {
Type = "oneshot";
User = user;
RemainAfterExit = "yes";
ExecStart = writeScript "${user}-xresources-init" ''
#!/bin/sh
echo ${shell-escape xres} | xrdb -merge
'';
};
};
in mkIf cfg.enable {
systemd.services."${user}-xresources" = mkService user xres;
};
}
|