awl-ntfy/flake.nix

24 lines
553 B
Nix
Raw Normal View History

2025-07-01 22:40:05 +02:00
{
2025-08-18 07:44:19 +02:00
description = "Send notification for your local awl trash collection to your phone";
2025-07-01 22:40:05 +02:00
2025-08-18 07:44:19 +02:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
2025-07-01 22:40:05 +02:00
2025-08-18 07:44:19 +02:00
gomod2nix = {
url = "github:nix-community/gomod2nix";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
blueprint = {
url = "github:numtide/blueprint";
inputs.nixpkgs.follows = "nixpkgs";
2025-07-01 22:40:05 +02:00
};
};
2025-08-18 07:44:19 +02:00
outputs = inputs: inputs.blueprint inputs;
2025-07-01 22:40:05 +02:00
}