config/shared/work/default.nix

28 lines
584 B
Nix
Raw Normal View History

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:43:45 +02:00
mj.base.users.user.extraGroups = ["docker"];
2024-03-13 12:40:31 +02:00
2024-03-13 14:02:36 +02:00
environment.systemPackages =
(with pkgs; [
2024-03-14 11:17:35 +02:00
#swc
#nodejs
#typescript
#concurrently
2024-03-13 14:02:36 +02:00
google-cloud-sdk
])
2024-03-13 14:05:52 +02:00
++ (with pkgs.pkgs-unstable; [
2024-03-14 11:17:35 +02:00
#turbo
2024-03-13 14:02:36 +02:00
]);
2024-03-13 12:40:31 +02:00
2024-03-13 12:43:45 +02:00
virtualisation.docker.enable = true;
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
}