1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-08 14:23:28 +02:00
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
'';
};
}