use blueprint for flake setup

This commit is contained in:
cato-001 2025-08-18 07:44:19 +02:00
parent 30826707cd
commit 0d7461fa92
6 changed files with 34 additions and 69 deletions

9
package.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs }:
pkgs.buildGoApplication {
pname = "awl-ntfy";
version = "0.1";
pwd = ./.;
src = ./.;
modules = ./gomod2nix.toml;
}