nix_config/homepage/flake.nix
2025-08-26 00:34:31 -06:00

21 lines
400 B
Nix

{
inputs = {
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
in {
formatter = pkgs.alejandra;
packages = rec {
default = posixlycorrect;
posixlycorrect = pkgs.callPackage ./. {};
};
});
}