hydra-example/flake.nix
2024-05-14 20:09:48 +02:00

9 lines
249 B
Nix

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