hydra-example/flake.nix
2024-05-14 19:29:42 +02:00

19 lines
334 B
Nix

{
description = "A very basic flake";
inputs = {
nh = {
url = "github:viperml/nh";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
nh,
...
} @ inputs: let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
hydraJobs."nh" = nh.packages.x86_64-linux.nh;
};
}