config

NixOS config
Log | Files | Refs | README | LICENSE

commit a705428b89df052b932daecaca960d79dab2bf90 (tree)
parent 272bea26b898ba646ed47f4bb85f5f4f127ef74a
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Wed, 13 Mar 2024 12:40:31 +0200

work: add google-cloud-sdk

Diffstat:
Mshared/work/default.nix | 11++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/shared/work/default.nix b/shared/work/default.nix @@ -1,5 +1,14 @@ -{config, ...}: { +{ + config, + pkgs, + ... +}: { mj.base.users.email = "motiejus.jakstys@chronosphere.io"; + + environment.systemPackages = with pkgs; [ + google-cloud-sdk + ]; + home-manager.users.${config.mj.username} = { home.sessionVariables.GOPRIVATE = "github.com/chronosphereio"; programs.git.extraConfig.url."git@github.com:".insteadOf = "https://github.com";