Tiny client and server pack for daxe's community modrinth.com/project/daxe
at main 20 lines 527 B view raw
1{ 2 description = "A simple mod pack development flake"; 3 4 inputs.nixpkgs.url = "github:NixOS/nixpkgs"; 5 6 outputs = { self, nixpkgs }: 7 let 8 supportedSystems = [ "x86_64-linux" "aarch64-linux" ]; 9 forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f { 10 pkgs = import nixpkgs { inherit system; }; 11 }); 12 in 13 { 14 devShells = forEachSupportedSystem ({ pkgs }: { 15 default = pkgs.mkShell { 16 packages = with pkgs; [ packwiz ]; 17 }; 18 }); 19 }; 20}