2020-12-05 13:48:06 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2020-08-22 17:44:39 +02:00
|
|
|
|
2020-12-05 13:48:06 +01:00
|
|
|
lib.mkIf config.sbruder.gui {
|
2020-08-22 17:44:39 +02:00
|
|
|
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;
|
|
|
|
}
|