nyxexprs/flake.nix

24 lines
528 B
Nix

{
description = "A personal package overlay";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = inputs @ {flake-parts, ...}:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-linux"];
imports = [./pkgs];
perSystem = {pkgs, ...}: {
formatter = pkgs.alejandra;
};
};
}