19 lines
334 B
Nix
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;
|
|
};
|
|
}
|