config/shared/work/default.nix

20 lines
456 B
Nix

{
config,
pkgs,
...
}: {
mj.base.users.email = "motiejus.jakstys@chronosphere.io";
mj.base.users.user.extraGroups = ["docker"];
environment.systemPackages = with pkgs; [
google-cloud-sdk
];
virtualisation.docker.enable = true;
home-manager.users.${config.mj.username} = {
home.sessionVariables.GOPRIVATE = "github.com/chronosphereio";
programs.git.extraConfig.url."git@github.com:".insteadOf = "https://github.com";
};
}