mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2024-11-01 19:11:15 +00:00
25 lines
601 B
Nix
25 lines
601 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;
|
|
devShells.default = with pkgs; mkShell {buildInputs = [npins];};
|
|
};
|
|
};
|
|
}
|