1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00
home-manager/modules/xresources.nix

43 lines
848 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.xresources;
formatLine = n: v:
let
v' =
if isBool v then (if v then "true" else "false")
else toString v;
in
"${n}: ${v'}";
in
{
options = {
xresources.properties = mkOption {
type = types.nullOr types.attrs;
default = null;
2017-01-15 20:03:55 +01:00
example = {
"XTerm*faceName" = "dejavu sans mono";
"Emacs*toolBar" = 0;
};
description = ''
2017-01-15 20:03:55 +01:00
X server resources that should be set. If <code>null</code>,
then this feature is disabled and no
<filename>~/.Xresources</filename> link is produced.
'';
};
};
config = mkIf (cfg.properties != null) {
home.file.".Xresources".text =
concatStringsSep "\n" (
mapAttrsToList formatLine cfg.properties
2017-01-13 01:12:26 +01:00
) + "\n";
};
}