2021-08-10 06:21:03 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
services.fnott = {
|
|
|
|
enable = true;
|
2021-09-26 11:08:45 +02:00
|
|
|
package = config.lib.test.mkStubPackage { };
|
2021-08-10 06:21:03 +02:00
|
|
|
|
|
|
|
settings = {
|
|
|
|
main = { notification-margin = 5; };
|
|
|
|
|
|
|
|
low = {
|
|
|
|
timeout = 5;
|
|
|
|
title-font = "Dina:weight=bold:slant=italic";
|
|
|
|
title-color = "ffffff";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/fnott/fnott.ini \
|
|
|
|
${./example-settings-expected.ini}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|