9 lines
249 B
Nix
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;
|
|
};
|
|
}
|