config/shared/work/default.nix

8 lines
283 B
Nix
Raw Normal View History

2024-03-13 10:01:09 +02:00
{config, ...}: {
2024-03-13 09:53:48 +02:00
mj.base.users.email = "motiejus.jakstys@chronosphere.io";
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
}