mirror of
https://github.com/hyprwm/hyprland-infra.git
synced 2025-05-13 05:40:39 +01:00
27 lines
559 B
Nix
27 lines
559 B
Nix
{
|
|
description = "Hyprland Infrastructure";
|
|
|
|
inputs = {
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
flake-parts,
|
|
...
|
|
} @ inputs:
|
|
flake-parts.lib.mkFlake {inherit inputs;} {
|
|
systems = ["x86_64-linux"];
|
|
|
|
perSystem = {pkgs, ...}: {
|
|
devShells.default = pkgs.mkShell {
|
|
buildInputs = [pkgs.alejandra];
|
|
};
|
|
};
|
|
|
|
flake = {
|
|
nixosConfigurations = import ./hosts {inherit self;};
|
|
};
|
|
};
|
|
}
|