This commit makes the `fonts.fontconfig.configFile.<name>.enable` option true by default which matches the behaviour of `home.file` and the like.
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib, ... }:
|
|
|
|
let
|
|
fcConfD = "home-files/.config/fontconfig/conf.d";
|
|
sampleText = "hello world";
|
|
sampleSource = builtins.toFile "fontconfig-source" ''
|
|
<?xml version="1.0"?>
|
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
<fontconfig>
|
|
...
|
|
</fontconfig>
|
|
'';
|
|
in
|
|
{
|
|
home.stateVersion = lib.trivial.release;
|
|
|
|
fonts.fontconfig = {
|
|
enable = true;
|
|
configFile = {
|
|
disabled = {
|
|
enable = false;
|
|
text = "";
|
|
};
|
|
label = {
|
|
label = "custom_label";
|
|
text = "";
|
|
};
|
|
priority = {
|
|
priority = 37;
|
|
text = "";
|
|
};
|
|
text.text = sampleText;
|
|
source.source = sampleSource;
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertDirectoryExists ${fcConfD}
|
|
|
|
assertPathNotExists ${fcConfD}/90-hm-disabled.conf
|
|
|
|
assertFileExists ${fcConfD}/90-hm-custom_label.conf
|
|
|
|
assertFileExists ${fcConfD}/37-hm-priority.conf
|
|
|
|
assertFileExists ${fcConfD}/90-hm-text.conf
|
|
assertFileContent ${fcConfD}/90-hm-text.conf \
|
|
${builtins.toFile "sample-text-config" sampleText}
|
|
|
|
assertFileExists ${fcConfD}/90-hm-source.conf
|
|
assertFileContent ${fcConfD}/90-hm-source.conf ${sampleSource}
|
|
'';
|
|
}
|