mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
21 lines
435 B
Nix
21 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'
|
|
'';
|
|
};
|
|
}
|