Original commit

This commit is contained in:
Maxiem Geldhof 2025-10-12 17:15:04 +02:00
commit cc74263a3b
26 changed files with 3052 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ 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;
}