nixos-config/machines/sternchen/packages.nix
2024-06-18 16:41:04 +02:00

46 lines
743 B
Nix

{ config, lib, pkgs, ... }: {
# todo : put these into `/homes/tina`
environment.systemPackages = with pkgs; [
nextcloud-client
gimp
inkscape
firefox
google-chrome
tipp10
zoom-us
pdfarranger
((ganttproject-bin.override {
jre = pkgs.openjdk11;
}).overrideAttrs (old: {
version = "3.1.3100";
src = pkgs.fetchzip {
url = "https://dl.ganttproject.biz/ganttproject-3.1.3100/ganttproject-3.1.3100.zip";
sha256 = "sha256-hw2paak0P670/kemiuqYHIaN0uUtkVKy+AX2X7OdnJ4=";
};
}))
# graphic
#krita
#gthumb
#digikam
#shotwell
#synfigstudio
valentina
vscode
# kde programs
okular
ark
gwenview
skanlite
];
}