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-15 15:47:26 +02:00
|
|
|
kubectl
|
2024-03-15 16:04:52 +02:00
|
|
|
kubectx
|
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";
|
2024-03-18 09:00:58 +02:00
|
|
|
programs = {
|
|
|
|
git.extraConfig.url."git@github.com:".insteadOf = "https://github.com";
|
|
|
|
chromium.extensions = [
|
|
|
|
{id = "aeblfdkhhhdcdjpifhhbdiojplfjncoa";} # 1password
|
|
|
|
{id = "mdkgfdijbhbcbajcdlebbodoppgnmhab";} # GoLinks
|
|
|
|
{id = "kgjfgplpablkjnlkjmjdecgdpfankdle";} # Zoom
|
|
|
|
];
|
|
|
|
};
|
2024-03-13 10:01:09 +02:00
|
|
|
};
|
2024-03-12 17:09:32 +02:00
|
|
|
}
|