1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 02:48:30 +02:00
home-manager/tests/modules/misc/gtk/gtk2-basic-config.nix
2021-05-18 00:47:15 +02:00

22 lines
435 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
gtk = {
enable = true;
gtk2.extraConfig = "gtk-can-change-accels = 1";
};
nmt.script = ''
assertFileExists home-files/.gtkrc-2.0
assertFileContent home-files/.gtkrc-2.0 ${
./gtk-basic-config-expected.conf
}
assertFileRegex home-path/etc/profile.d/hm-session-vars.sh \
'GTK2_RC_FILES=.*/.gtkrc-2.0'
'';
};
}