retry
All checks were successful
/ lint (push) Successful in 1m9s

This commit is contained in:
Jana Dönszelmann 2025-08-20 11:41:30 +02:00
parent 4bbb51ef42
commit 3e7d55f5b9
No known key found for this signature in database
13 changed files with 150 additions and 93 deletions

View file

@ -1,8 +1,6 @@
{ flakes, pkgs,... }:
{ flakes, pkgs, ... }:
let
totpal =
flakes.totpal.packages.${pkgs.system}.default
;
totpal = flakes.totpal.packages.${pkgs.system}.default;
in
{
services.nginx = {
@ -17,12 +15,11 @@ in
};
};
systemd.services.totpal =
{
description = "totpal";
serviceConfig = {
Type = "simple";
ExecStart = "${totpal}/bin/totpal";
};
systemd.services.totpal = {
description = "totpal";
serviceConfig = {
Type = "simple";
ExecStart = "${totpal}/bin/totpal";
};
};
}