nix-config/modules/office.nix

29 lines
323 B
Nix
Raw Normal View History

2025-01-14 01:29:24 +01:00
{
pkgs,
lib,
...
}: {
environment.systemPackages = with pkgs; [
libreoffice-fresh
xournalpp
system-config-printer
simple-scan
#naps2
baobab
];
services.printing = {
enable = true;
drivers = with pkgs; [
gutenprint
#epson-escpr
epson-escpr2
];
};
}