28 lines
534 B
Nix
28 lines
534 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.goland
|
|
minicom
|
|
openjdk11
|
|
putty
|
|
remmina
|
|
thunderbird
|
|
vscode
|
|
vscode-extensions.golang.go
|
|
vscode-extensions.ms-python.python
|
|
wireshark
|
|
go_1_20
|
|
meld
|
|
];
|
|
}
|