hyprland-infra/flake.nix
2024-02-04 02:10:17 +03:00

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;};
};
};
}