depot/third_party/home-manager/tests/modules/programs/alacritty/empty-settings.nix

16 lines
217 B
Nix
Raw Normal View History

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