This commit is contained in:
Jet 2026-03-18 16:10:01 -07:00
commit acca19d3dd
No known key found for this signature in database
6 changed files with 211 additions and 0 deletions

11
flake.nix Normal file
View file

@ -0,0 +1,11 @@
{
description = "Noisepics - Noisebridge community photo gallery";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }: {
nixosModules.default = import ./module.nix;
};
}