mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
25 lines
515 B
Nix
25 lines
515 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.signaturepdf = {
|
||
|
enable = true;
|
||
|
port = 9494;
|
||
|
extraConfig = { upload_max_filesize = "24M"; };
|
||
|
};
|
||
|
|
||
|
test.stubs = {
|
||
|
signaturepdf = { outPath = "/signaturepdf"; };
|
||
|
xdg-utils = { };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
home-files/.config/systemd/user/signaturepdf.service \
|
||
|
${./basic-configuration.service}
|
||
|
|
||
|
assertFileContent \
|
||
|
home-path/share/applications/signaturepdf.desktop \
|
||
|
${./basic-configuration.desktop}
|
||
|
'';
|
||
|
}
|