noisebell/pi/flake.nix
2026-03-09 15:48:45 -07:00

81 lines
2.3 KiB
Nix

{
description = "NixOS configuration for noisebell Pi";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
noisebell.url = "path:./pi-service";
};
outputs = { self, nixpkgs, noisebell }:
let
nixosModule = { config, lib, pkgs, ... }:
let
cfg = config.services.noisebell;
in
{
options.services.noisebell = {
enable = lib.mkEnableOption "noisebell GPIO door monitor";
gpioPin = lib.mkOption {
type = lib.types.int;
default = 17;
description = "GPIO pin number to monitor.";
};
debounceSecs = lib.mkOption {
type = lib.types.int;
default = 5;
description = "Debounce delay in seconds.";
};
port = lib.mkOption {
type = lib.types.port;
default = 8080;
description = "HTTP port for the status endpoint.";
};
endpointUrl = lib.mkOption {
type = lib.types.str;
description = "URL to POST state changes to.";
};
};
config = lib.mkIf cfg.enable {
systemd.services.noisebell = {
description = "Noisebell GPIO door monitor";
wantedBy = [ "multi-user.target" ];
after = [ "network-online.target" ];
wants = [ "network-online.target" ];
environment = {
NOISEBELL_GPIO_PIN = toString cfg.gpioPin;
NOISEBELL_DEBOUNCE_SECS = toString cfg.debounceSecs;
NOISEBELL_PORT = toString cfg.port;
NOISEBELL_ENDPOINT_URL = cfg.endpointUrl;
};
serviceConfig = {
ExecStart = "${noisebell.packages.aarch64-linux.default}/bin/noisebell";
Restart = "on-failure";
RestartSec = 5;
DynamicUser = true;
SupplementaryGroups = [ "gpio" ];
};
};
};
};
in
{
nixosModules.default = nixosModule;
nixosConfigurations.pi = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [
nixosModule
./configuration.nix
./hardware-configuration.nix
];
};
};
}