feat: split out configuration

This commit is contained in:
2025-06-17 15:14:06 +01:00
committed by Emma Thorpe
parent 934769ba71
commit c1b3d78213
3 changed files with 16 additions and 15 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, pkgs, inputs, lib, ... }:
{
programs.git = {
userEmail = "emma.thorpe@cloud.com";
};
home.packages = [
pkgs.kubectl
pkgs.tenv
pkgs.kubernetes-helm
pkgs.azure-cli
pkgs.kubelogin
pkgs.curl
];
}