module change

This commit is contained in:
Paul Zinselmeyer 2024-08-28 22:58:04 +02:00
parent f6b8169fa7
commit c0c867477c
Signed by: pfzetto
GPG key ID: B471A1AF06C895FD
2 changed files with 7 additions and 3 deletions

View file

@ -114,6 +114,6 @@
}; };
}) // { }) // {
nixosModules.thekenlicht-daemon = ./module.nix; nixosModules.thekenlicht-daemon = (import ./module.nix {flake=self;});
}; };
} }

View file

@ -1,3 +1,4 @@
{flake}:
{ self, config, pkgs, lib, ... }: { self, config, pkgs, lib, ... }:
let let
cfg = config.services.thekenlicht-daemon; cfg = config.services.thekenlicht-daemon;
@ -6,7 +7,10 @@ in
options = { options = {
services.thekenlicht-daemon = { services.thekenlicht-daemon = {
enable = lib.mkEnableOption "Enable Module"; enable = lib.mkEnableOption "Enable Module";
serialPort = lib.mkStringOption "Serial Port"; serialPort = lib.mkOption {
description = "Serial Port";
type = lib.types.uniq lib.types.str;
};
}; };
}; };
@ -14,7 +18,7 @@ in
systemd.services.thekenlicht-daemon = { systemd.services.thekenlicht-daemon = {
description = "converts artnet to serial thekenlicht commands"; description = "converts artnet to serial thekenlicht commands";
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
serviceConfig.ExecStart = "${self.packages.thekenlicht-daemon}/bin/thekenlicht-daemon ${cfg.serialPort}"; serviceConfig.ExecStart = "${flake.packages.${pkgs.system}.default}/bin/thekenlicht-daemon ${cfg.serialPort}";
serviceConfig.Restart = "on-failure"; serviceConfig.Restart = "on-failure";
}; };
}; };