1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 04:53:33 +02:00
home-manager/tests/modules/programs/fuzzel/example-settings.nix
2023-05-13 15:54:34 +02:00

24 lines
396 B
Nix

{ config, ... }:
{
programs.fuzzel = {
enable = true;
package = config.lib.test.mkStubPackage { };
settings = {
main = {
font = "Fira Code:size=11";
dpi-aware = "yes";
};
border = { width = 6; };
};
};
nmt.script = ''
assertFileContent \
home-files/.config/fuzzel/fuzzel.ini \
${./example-settings-expected.ini}
'';
}