nyxexprs/flake.nix

24 lines
528 B
Nix
Raw Normal View History

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