nixos-configuration/nix-cache/shell.nix
2025-09-03 22:17:28 +02:00

10 lines
181 B
Nix

with import <nixpkgs> { };
mkShellNoCC {
buildInputs = [
flyctl
];
shellHook = ''
export FLY_ACCESS_TOKEN=$(pass show private/services/fly.io/app-jalr-attic)
'';
}