15 lines
345 B
Nix
15 lines
345 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = [
|
|
pkgs.git
|
|
pkgs.google-cloud-sdk
|
|
pkgs.zulu8
|
|
pkgs.wget
|
|
pkgs.tmux
|
|
];
|
|
age.secrets.google-storage-key = {
|
|
file = ./secrets/google-storage-key;
|
|
owner = "root";
|
|
};
|
|
environment.variables.GOOGLE_APPLICATION_CREDENTIALS = config.age.secrets."google-storage-key".path;
|
|
}
|