10 lines
181 B
Nix
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)
|
|
'';
|
|
}
|