aperture: add module

This commit is contained in:
Aguirre Matteo 2026-01-14 13:52:12 -03:00 committed by Austin Horstman
parent 85c83f7096
commit 9ab59a43cc
4 changed files with 74 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{
lib,
pkgs,
config,
...
}:
let
inherit (lib)
mkIf
mkEnableOption
mkPackageOption
mkOption
;
cfg = config.programs.aperture;
yamlFormat = pkgs.formats.yaml { };
in
{
meta.maintainers = with lib.hm.maintainers; [ aguirre-matteo ];
options.programs.aperture = {
enable = mkEnableOption "aperture";
package = mkPackageOption pkgs "aperture" { nullable = true; };
settings = mkOption {
inherit (yamlFormat) type;
default = { };
example = {
listenaddr = "localhost:8081";
staticroot = "./static";
servestatic = false;
debuglevel = "debug";
autocert = false;
servername = "aperture.example.com";
};
description = ''
Configuration settings for aperture. All the available options can be found here:
<https://github.com/lightninglabs/aperture/blob/master/sample-conf.yaml>
'';
};
};
config = mkIf cfg.enable {
home.packages = mkIf (cfg.package != null) [ cfg.package ];
home.file.".aperture/aperture.yaml" = mkIf (cfg.settings != { }) {
source = yamlFormat.generate "aperture.yaml" cfg.settings;
};
};
}

View file

@ -0,0 +1,6 @@
autocert: false
debuglevel: debug
listenaddr: localhost:8081
servername: aperture.example.com
servestatic: false
staticroot: ./static

View file

@ -0,0 +1 @@
{ aperture-settings = ./settings.nix; }

View 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}
'';
}