mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
5e6f09795c
Closes #519
16 lines
361 B
Nix
16 lines
361 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
gtk.enable = true;
|
|
gtk.gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/gtk-2.0/gtkrc
|
|
assertFileRegex home-path/etc/profile.d/hm-session-vars.sh \
|
|
'GTK2_RC_FILES=.*/\.config/gtk-2.0/gtkrc'
|
|
'';
|
|
};
|
|
}
|