depot/third_party/home-manager/tests/modules/programs/feh/feh-empty-settings.nix
Default email cfcd52ff70 Project import generated by Copybara.
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
2021-11-05 00:42:44 +08:00

14 lines
237 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
'';
};
}