2021-04-30 08:56:01 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
gtk.enable = true;
|
|
|
|
gtk.gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.dconf = { };
|
|
|
|
|
2021-04-30 08:56:01 +02:00
|
|
|
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'
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|