2021-08-10 06:21:03 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
# FIXME: Deprecate on next version release of fnott (https://codeberg.org/dnkl/fnott/pulls/24).
|
|
|
|
{
|
|
|
|
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 = {
|
|
|
|
max-icon-size = 32;
|
|
|
|
notification-margin = 5;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/fnott/fnott.ini \
|
|
|
|
${./global-properties-expected.ini}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|