29 lines
323 B
Nix
29 lines
323 B
Nix
|
{
|
||
|
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
|
||
|
];
|
||
|
};
|
||
|
|
||
|
}
|