2021-07-13 07:59:37 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.xsettingsd;
|
|
|
|
|
2021-09-30 05:56:05 +02:00
|
|
|
renderSettings = settings:
|
|
|
|
concatStrings (mapAttrsToList renderSetting settings);
|
|
|
|
|
|
|
|
renderSetting = key: value: ''
|
|
|
|
${key} ${renderValue value}
|
|
|
|
'';
|
|
|
|
|
|
|
|
renderValue = value:
|
|
|
|
{
|
|
|
|
int = toString value;
|
|
|
|
bool = if value then "1" else "0";
|
|
|
|
string = ''"${value}"'';
|
|
|
|
}.${builtins.typeOf value};
|
|
|
|
|
2021-07-13 07:59:37 +02:00
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.imalison ];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.xsettingsd = {
|
|
|
|
enable = mkEnableOption "xsettingsd";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.xsettingsd;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.xsettingsd";
|
2021-07-13 07:59:37 +02:00
|
|
|
description = ''
|
|
|
|
Package containing the <command>xsettingsd</command> program.
|
|
|
|
'';
|
|
|
|
};
|
2021-09-30 05:56:05 +02:00
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = with types; attrsOf (oneOf [ bool int str ]);
|
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2021-09-30 05:56:05 +02:00
|
|
|
{
|
|
|
|
"Net/ThemeName" = "Numix";
|
|
|
|
"Xft/Antialias" = true;
|
|
|
|
"Xft/Hinting" = true;
|
|
|
|
"Xft/RGBA" = "rgb";
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Xsettingsd options for configuration file. See
|
|
|
|
<link xlink:href="https://github.com/derat/xsettingsd/wiki/Settings"/>
|
|
|
|
for documentation on these values.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
configFile = mkOption {
|
|
|
|
type = types.nullOr types.package;
|
|
|
|
internal = true;
|
|
|
|
readOnly = true;
|
|
|
|
default = if cfg.settings == { } then
|
|
|
|
null
|
|
|
|
else
|
|
|
|
pkgs.writeText "xsettingsd.conf" (renderSettings cfg.settings);
|
|
|
|
};
|
2021-07-13 07:59:37 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.xsettingsd" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2021-07-13 07:59:37 +02:00
|
|
|
systemd.user.services.xsettingsd = {
|
|
|
|
Unit = {
|
|
|
|
Description = "xsettingsd";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Environment = "PATH=${config.home.profileDirectory}/bin";
|
2021-09-30 05:56:05 +02:00
|
|
|
ExecStart = "${cfg.package}/bin/xsettingsd"
|
|
|
|
+ optionalString (cfg.configFile != null)
|
|
|
|
" -c ${escapeShellArg cfg.configFile}";
|
2021-07-13 07:59:37 +02:00
|
|
|
Restart = "on-abort";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|