funkytions/flake.nix

13 lines
390 B
Nix
Raw Permalink Normal View History

2024-01-12 14:11:32 +01:00
{ description = "A collection of tedious nix functions";
2024-01-12 14:47:55 +01:00
inputs = {
2024-03-08 13:08:24 +01:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
2024-01-12 14:11:32 +01:00
};
2024-01-12 14:47:55 +01:00
outputs = { nixpkgs, flake-utils, self }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
nightmare = pkgs.callPackage ./nightmare.nix {};
});
2024-01-12 14:11:32 +01:00
}