NixOS-based container for running GitHub actions
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix push-container

+16 -4
+4 -4
flake.lock
··· 21 21 "zig": "zig" 22 22 }, 23 23 "locked": { 24 - "lastModified": 1769905894, 25 - "narHash": "sha256-vEQwYRDc8VNFT40pLXqeQpRzRi4Ki8nz0v6xVcDwlAY=", 24 + "lastModified": 1769916118, 25 + "narHash": "sha256-abEOOb4MSgd8lDHqJ2LhbfLnZzsF5AC5hL2s4W6mLFk=", 26 26 "ref": "refs/heads/main", 27 - "rev": "4da280dec0819e8a45b65dcd7cfd99bba5f57160", 28 - "revCount": 2, 27 + "rev": "49243f4c24a97b8683037f4b29672c2cc6db25f0", 28 + "revCount": 4, 29 29 "type": "git", 30 30 "url": "https://git.ocjtech.us/jeff/push-container.git" 31 31 },
+12
flake.nix
··· 79 79 pkgs.regctl 80 80 pkgs.stdenv.cc.cc.lib 81 81 pkgs.tailscale 82 + pkgs.tar 82 83 pkgs.which 83 84 pkgs.xz 84 85 pkgs.zstd ··· 450 451 # }; 451 452 } 452 453 ); 454 + devShells = forAllSystems (pkgs: { 455 + default = pkgs.mkShell { 456 + name = "nixos-runner"; 457 + nativeBuildInputs = [ 458 + pkgs.regctl 459 + pkgs.gzip 460 + push-container.packages.${pkgs.stdenv.hostPlatform.system}.push-container 461 + ]; 462 + 463 + }; 464 + }); 453 465 apps = forAllSystems (pkgs: { 454 466 push-container = { 455 467 type = "app";