All checks were successful
Build Image / Build Image (push) Successful in 2m48s
Reviewed-on: #139 Co-authored-by: GregoryDosh <authentik@gregorydosh.com> Co-committed-by: GregoryDosh <authentik@gregorydosh.com>
12 lines
No EOL
261 B
Nix
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
|
|
];
|
|
} |