aperture: add module
This commit is contained in:
parent
85c83f7096
commit
9ab59a43cc
4 changed files with 74 additions and 0 deletions
6
tests/modules/programs/aperture/aperture.yaml
Normal file
6
tests/modules/programs/aperture/aperture.yaml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
autocert: false
|
||||
debuglevel: debug
|
||||
listenaddr: localhost:8081
|
||||
servername: aperture.example.com
|
||||
servestatic: false
|
||||
staticroot: ./static
|
||||
1
tests/modules/programs/aperture/default.nix
Normal file
1
tests/modules/programs/aperture/default.nix
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ aperture-settings = ./settings.nix; }
|
||||
19
tests/modules/programs/aperture/settings.nix
Normal file
19
tests/modules/programs/aperture/settings.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
programs.aperture = {
|
||||
enable = true;
|
||||
settings = {
|
||||
listenaddr = "localhost:8081";
|
||||
staticroot = "./static";
|
||||
servestatic = false;
|
||||
debuglevel = "debug";
|
||||
autocert = false;
|
||||
servername = "aperture.example.com";
|
||||
};
|
||||
};
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists home-files/.aperture/aperture.yaml
|
||||
assertFileContent home-files/.aperture/aperture.yaml \
|
||||
${./aperture.yaml}
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue