1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-26 21:19:45 +01:00
home-manager/tests/modules/programs/feh/feh-empty-settings.nix
gmvar 1d0862ee2d
feh: add themes option (#6074)
- added themes option
- added themes test
- updated broken man page links
2024-11-14 18:16:21 +01:00

15 lines
293 B
Nix

{ pkgs, ... }:
{
config = {
programs.feh.enable = true;
test.stubs.feh = { };
nmt.script = ''
assertPathNotExists home-files/.config/feh/buttons
assertPathNotExists home-files/.config/feh/keys
assertPathNotExists home-files/.config/feh/themes
'';
};
}