funkytions/flake.nix

13 lines
386 B
Nix
Raw 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 = {
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
}