mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
16 lines
232 B
Nix
16 lines
232 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
home.packages = [ pkgs.comic-relief ];
|
||
|
|
||
|
fonts.fontconfig.enable = true;
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertDirectoryNotEmpty home-path/lib/fontconfig/cache
|
||
|
'';
|
||
|
};
|
||
|
}
|