depot/third_party/home-manager/tests/modules/misc/fontconfig/no-font-package.nix

18 lines
237 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
home.packages = [
# Look, no font!
];
fonts.fontconfig.enable = true;
nmt.script = ''
assertPathNotExists home-path/lib/fontconfig/cache
'';
};
}