mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
18 lines
237 B
Nix
18 lines
237 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
home.packages = [
|
||
|
# Look, no font!
|
||
|
];
|
||
|
|
||
|
fonts.fontconfig.enable = true;
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertPathNotExists home-path/lib/fontconfig/cache
|
||
|
'';
|
||
|
};
|
||
|
}
|