Hendrik Sokolowski
489001fb5b
All checks were successful
continuous-integration/drone/push Build is passing
33 lines
652 B
Nix
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
|
|
];
|
|
}
|