image-forgejo-runner/shell.nix
GregoryDosh 725e4d05c0
All checks were successful
Build Image / Build Image (push) Successful in 2m48s
fix: drop ansible version, add alsa headers for sound dev in automidically (#139)
Reviewed-on: #139
Co-authored-by: GregoryDosh <authentik@gregorydosh.com>
Co-committed-by: GregoryDosh <authentik@gregorydosh.com>
2024-11-24 22:25:23 +00:00

12 lines
No EOL
261 B
Nix

let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-unstable";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
gnumake
infisical
python311Packages.ansible-core
];
}