nixos-config/modules/office.nix

20 lines
457 B
Nix
Raw Normal View History

2020-08-22 17:44:39 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
aspellDicts.de
hunspellDicts.de-de # dictionary
gscan2pdf # scanning tool
jameica # application framework (used for hibiscus online banking)
khal # calendar
khard # address book
libreoffice # office suite
pdfsam-basic # pdf multitool
vdirsyncerStable # dav sync client
xournalpp # notebook
xsane # scanning tool
];
hardware.sane.enable = true;
}