mirror of
https://github.com/hyprwm/hyprland-infra.git
synced 2025-05-12 21:30:36 +01:00
19 lines
440 B
Nix
19 lines
440 B
Nix
{
|
|
description = "Hyprland Infrastructure";
|
|
|
|
inputs = {
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
agenix.url = "github:ryantm/agenix";
|
|
typhon.url = "github:typhon-ci/typhon";
|
|
};
|
|
|
|
outputs = inputs:
|
|
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
|
|
systems = ["x86_64-linux"];
|
|
imports = [
|
|
./hosts
|
|
./parts
|
|
];
|
|
};
|
|
}
|