2024-03-13 12:40:31 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2024-03-13 09:53:48 +02:00
|
|
|
mj.base.users.email = "motiejus.jakstys@chronosphere.io";
|
2024-03-13 12:40:31 +02:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
google-cloud-sdk
|
|
|
|
];
|
|
|
|
|
2024-03-13 10:01:09 +02:00
|
|
|
home-manager.users.${config.mj.username} = {
|
|
|
|
home.sessionVariables.GOPRIVATE = "github.com/chronosphereio";
|
|
|
|
programs.git.extraConfig.url."git@github.com:".insteadOf = "https://github.com";
|
|
|
|
};
|
2024-03-12 17:09:32 +02:00
|
|
|
}
|