nix-config/modules/office.nix

33 lines
428 B
Nix
Raw Normal View History

2025-01-14 01:29:24 +01:00
{
pkgs,
lib,
...
}: {
environment.systemPackages = with pkgs; [
libreoffice-fresh
2025-01-21 12:58:46 +02:00
hunspell hyphen
hunspellDicts.en_US hyphenDicts.en_US
hunspellDicts.de_DE hyphenDicts.de_DE
2025-01-14 01:29:24 +01:00
xournalpp
system-config-printer
simple-scan
#naps2
baobab
];
services.printing = {
enable = true;
drivers = with pkgs; [
gutenprint
#epson-escpr
epson-escpr2
];
};
}