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