mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
23 lines
396 B
Nix
23 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}
|
|
'';
|
|
}
|