hydra-example/flake.nix
2024-05-14 20:07:49 +02:00

17 lines
362 B
Nix

{
description = "A very basic flake";
inputs = {
nh = {
url = "github:viperml/nh";
inputs.nixpkgs.follows = "nixpkgs";
};
heliox-cli.url = "git+https://git.ghoscht.com/heliox/cli?ref=custom-dimming";
};
outputs = {
nh,
heliox-cli,
...
} @ inputs: {
hydraJobs.heliox = heliox-cli.packages.x86_64-linux.hx;
};
}