From 4020d3ea20058ab3dff7c157ecf3abc2f32e3df7 Mon Sep 17 00:00:00 2001 From: Hendrik Sokolowski Date: Mon, 22 Aug 2022 00:21:08 +0200 Subject: [PATCH] add profiles.work --- profiles/work/default.nix | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 profiles/work/default.nix diff --git a/profiles/work/default.nix b/profiles/work/default.nix new file mode 100644 index 00000000..abfc9739 --- /dev/null +++ b/profiles/work/default.nix @@ -0,0 +1,35 @@ +{ self, config, home-manager, lib, pkgs, inputs, ... }: +let + psCfg = config.pub-solar; +in +{ + # Sets nrdxp.cachix.org binary cache which just speeds up some builds + imports = [ ../cachix ]; + + 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; [ + minicom + openjdk11 + putty + python39Full + python39Packages.pyyaml + remmina + slack + thunderbird + jetbrains.idea-community + vscode + vscode-extensions.golang.go + vscode-extensions.ms-python.python + vscode-extensions.redhat.java + wireshark + teams + go_1_18 + ]; + +}