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

16 lines
202 B
Nix
Raw Normal View History

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