nixos-config/machines/sternchen/packages.nix
Ingolf Wagner 7a6510a4e6
Some checks are pending
Build all NixOS Configurations / nix build (push) Waiting to run
nix fmt
2024-08-29 08:26:04 +07:00

53 lines
783 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
];
}