summary refs log tree commit diff stats
path: root/user/settings/xresources.nix
blob: 075eeb2257de5e953844ed4157d3036a46ea7bb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:

{
  home.file.".xresources" = {
    recursive = true;
    source = ../xresources/.xresources;
    onChange = ''
      ${pkgs.xorg.xrdb}/bin/xrdb -merge .xresources/main
    '';
  };
}