hydra-example/flake.nix

10 lines
214 B
Nix
Raw Normal View History

2024-05-14 19:19:28 +02:00
{
description = "A very basic flake";
2024-05-14 19:26:15 +02:00
inputs = {
2024-05-14 20:30:07 +02:00
hyprland.url = "github:hyprwm/Hyprland";
2024-05-14 19:26:15 +02:00
};
2024-05-14 20:30:07 +02:00
outputs = {hyprland, ...} @ inputs: {
hydraJobs.heliox = hyprland.packages.x86_64-linux.hyprland;
2024-05-14 19:19:28 +02:00
};
}