pub-solar-os/profiles/work/default.nix

34 lines
714 B
Nix

{ 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;
boot.kernelParams = [
"systemd.unified_cgroup_hierarchy=1"
];
environment.systemPackages = with pkgs; [
jetbrains.idea-community
minicom
openjdk11
python39Full
python39Packages.pyyaml
remmina
thunderbird
vscode
vscode-extensions.golang.go
vscode-extensions.ms-python.python
vscode-extensions.redhat.java
wireshark
];
}