52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs;
|
|
[ # Networking
|
|
unison
|
|
transmission # GUI Tools, maybe extract...
|
|
] ++ [ # Desktop Environment Applications
|
|
firefox
|
|
google-chrome
|
|
chromium
|
|
midori
|
|
qutebrowser
|
|
gnome3.evolution # TODO: Evolution EWS
|
|
synergy
|
|
quicksynergy
|
|
simple-scan
|
|
nextcloud-client
|
|
owncloud-client
|
|
] ++ [ # office # TODO: Migrate to office.nix
|
|
libreoffice-fresh # TODO: Dictionaries, nixos/nixpkgs#14430
|
|
pdfgrep
|
|
pdftk
|
|
calibre
|
|
tectonic
|
|
texstudio
|
|
pandoc
|
|
system-config-printer
|
|
cups-pk-helper
|
|
cups-bjnp
|
|
gutenprint
|
|
gutenprintBin
|
|
hplipWithPlugin
|
|
gnome3.gnome-online-accounts
|
|
gnome3.gnome-control-center
|
|
] ++ [ # Communication
|
|
signal-desktop
|
|
tdesktop
|
|
discord
|
|
mattermost-desktop
|
|
# pidgin pidgin-otr pidgin-with-plugins #TODO: Pidgin needed?
|
|
#TODO: ekiga?
|
|
skype
|
|
slack
|
|
teams
|
|
teamviewer
|
|
rdesktop
|
|
vmware-horizon-client
|
|
];
|
|
|
|
}
|