This commit is contained in:
bluepython508
2025-04-11 16:15:28 +01:00
parent d0b9f09cb5
commit fbefeb0894
5 changed files with 67 additions and 0 deletions

20
flake.nix Normal file
View File

@@ -0,0 +1,20 @@
{
outputs = {
self,
nixpkgs,
systems,
}: let
eachSystem = f:
nixpkgs.lib.genAttrs (import systems) (system:
f {
inherit system;
pkgs = nixpkgs.legacyPackages.${system};
});
in {
devShells = eachSystem ({pkgs, ...}: {
default = pkgs.mkShell {
packages = [pkgs.packwiz];
};
});
};
}