initial commit

This commit is contained in:
2026-02-20 17:22:14 +01:00
commit 86dc6ff2d9
7 changed files with 696 additions and 0 deletions

13
flake.nix Normal file
View File

@@ -0,0 +1,13 @@
{
description = "Panoptikon - Website and command output monitoring";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = inputs: {
nixosModules.default = ./module.nix;
overlays.default = ./overlay.nix;
};
}