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

34 lines
714 B
Nix
Raw Normal View History

2022-04-30 18:54:18 +00:00
{ 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;
2022-05-27 12:36:53 +00:00
boot.kernelParams = [
"systemd.unified_cgroup_hierarchy=1"
];
2022-04-30 18:54:18 +00:00
environment.systemPackages = with pkgs; [
2022-05-23 21:32:18 +00:00
jetbrains.idea-community
2022-05-16 09:12:55 +00:00
minicom
2022-05-23 21:32:18 +00:00
openjdk11
2022-04-30 18:54:18 +00:00
python39Full
python39Packages.pyyaml
remmina
2022-05-06 16:45:07 +00:00
thunderbird
2022-04-30 18:54:18 +00:00
vscode
vscode-extensions.golang.go
vscode-extensions.ms-python.python
2022-05-23 21:32:18 +00:00
vscode-extensions.redhat.java
wireshark
2022-04-30 18:54:18 +00:00
];
}