2020-09-27 14:20:19 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.feh.enable = true;
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.feh = { };
|
2020-09-27 14:20:19 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertPathNotExists home-files/.config/feh/buttons
|
|
|
|
assertPathNotExists home-files/.config/feh/keys
|
2024-11-14 18:16:21 +01:00
|
|
|
assertPathNotExists home-files/.config/feh/themes
|
2020-09-27 14:20:19 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|