aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/misc/fontconfig/no-font-package.nix
blob: c4c687a13209a839bbb9362b584a893634f809fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    home.packages = [
      # Look, no font!
    ];

    fonts.fontconfig.enable = true;

    nmt.script = ''
      assertPathNotExists home-path/lib/fontconfig/cache
    '';
  };
}