nixos-config/modules/office.nix

22 lines
504 B
Nix
Raw Normal View History

2020-08-22 17:44:39 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
aspellDicts.de
2020-11-03 10:58:23 +01:00
aspellDicts.en
hunspellDicts.de-de
hunspellDicts.en-gb-ise # dictionary
2020-08-22 17:44:39 +02:00
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;
}