nixos-config/nixos/machines/sternchen/packages.nix

53 lines
890 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }: {
2021-03-05 08:22:35 +01:00
2021-03-05 16:01:24 +01:00
# todo : put these into `/homes/tina`
2021-03-05 08:22:35 +01:00
environment.systemPackages = with pkgs; [
#spotify
#sweethome3d.application
2021-03-05 16:01:24 +01:00
nextcloud-client
gimp
inkscape
#darktable
#keepassxc
2021-03-05 16:01:24 +01:00
firefox
google-chrome
#skypeforlinux
2021-04-16 18:48:44 +02:00
tipp10
zoom-us
#gnome3.gnome-todo
#gnome3.gnome-control-center
2021-11-21 11:04:39 +01:00
pdfarranger
2021-03-19 09:21:05 +01:00
2022-02-08 12:44:18 +01:00
((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=";
};
}))
2022-02-07 19:13:27 +01:00
2021-03-28 09:40:39 +02:00
# graphic
2021-11-18 20:47:06 +01:00
#krita
#gthumb
#digikam
#shotwell
2021-04-14 21:06:31 +02:00
#synfigstudio
2022-06-27 13:02:15 +02:00
valentina
2021-03-19 09:21:05 +01:00
2023-08-14 03:29:02 +02:00
vscode
2021-03-19 09:21:05 +01:00
# kde programs
2021-03-19 09:17:29 +01:00
okular
2021-03-19 09:21:05 +01:00
ark
gwenview
skanlite
2021-11-18 20:47:06 +01:00
2021-03-05 08:22:35 +01:00
];
}