39 lines
419 B
Nix
39 lines
419 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
|
|
|
|
# graphic
|
|
#krita
|
|
#gthumb
|
|
#digikam
|
|
#shotwell
|
|
#synfigstudio
|
|
|
|
valentina
|
|
|
|
vscode
|
|
|
|
# kde programs
|
|
okular
|
|
ark
|
|
gwenview
|
|
skanlite
|
|
|
|
];
|
|
|
|
}
|