mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 21:19:45 +01:00
1d0862ee2d
- added themes option - added themes test - updated broken man page links
15 lines
293 B
Nix
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
|
|
'';
|
|
};
|
|
}
|