os/profiles/work/default.nix
Hendrik Sokolowski 489001fb5b
All checks were successful
continuous-integration/drone/push Build is passing
profiles/work: remove teams, use go 1.20, install meld
2023-10-06 00:37:48 +02:00

33 lines
652 B
Nix

{ self, config, home-manager, lib, pkgs, inputs, ... }:
let
psCfg = config.pub-solar;
in
{
pub-solar.docker.enable = true;
pub-solar.nextcloud.enable = true;
pub-solar.social.enable = true;
pub-solar.office.enable = true;
systemd.enableUnifiedCgroupHierarchy = true;
environment.systemPackages = with pkgs; [
jetbrains.idea-community
jetbrains.goland
minicom
openjdk11
putty
python39Full
python39Packages.pyyaml
remmina
slack
thunderbird
vscode
vscode-extensions.golang.go
vscode-extensions.ms-python.python
vscode-extensions.redhat.java
wireshark
go_1_20
meld
];
}