home-manager/tests/modules/programs/hyfetch/empty-settings.nix

16 lines
216 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.hyfetch.enable = true;
test.stubs.hyfetch = { };
nmt.script = ''
assertPathNotExists home-files/.config/hyfetch.json
'';
};
}