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

9 lines
214 B
Nix

{
description = "A very basic flake";
inputs = {
hyprland.url = "github:hyprwm/Hyprland";
};
outputs = {hyprland, ...} @ inputs: {
hydraJobs.heliox = hyprland.packages.x86_64-linux.hyprland;
};
}