mirror of
https://github.com/nix-community/home-manager
synced 2024-11-19 01:29:46 +01:00
22 lines
437 B
Nix
22 lines
437 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
|
||
|
assertFileContents 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'
|
||
|
'';
|
||
|
};
|
||
|
}
|