mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
18 lines
390 B
Nix
18 lines
390 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
gtk.enable = true;
|
|
gtk.gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
|
|
|
|
test.stubs.dconf = { };
|
|
|
|
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'
|
|
'';
|
|
};
|
|
}
|