Skip to content

Instantly share code, notes, and snippets.

@ivankovnatsky
Last active May 11, 2024 07:02
Show Gist options
  • Save ivankovnatsky/79756697255b36bc03367bcb3e5d77cf to your computer and use it in GitHub Desktop.
Save ivankovnatsky/79756697255b36bc03367bcb3e5d77cf to your computer and use it in GitHub Desktop.
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
};
in
with pkgs;
{
devShells.default = mkShell {
buildInputs = [
google-cloud-sdk
];
shellHook = ''
$SHELL
'';
};
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment