Enable priting module on picard

This commit is contained in:
Andrea Ciceri 2023-12-11 20:42:57 +01:00
parent d896e82ad5
commit 2cfbc6d28b
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
2 changed files with 3 additions and 6 deletions

View file

@ -25,6 +25,7 @@
"virt-manager" "virt-manager"
"ssh-initrd" "ssh-initrd"
"hercules-ci" "hercules-ci"
"printing"
] ]
++ [ ++ [
./disko.nix ./disko.nix

View file

@ -1,9 +1,4 @@
{ {pkgs, ...}: {
config,
lib,
pkgs,
...
}: {
services.avahi.enable = true; services.avahi.enable = true;
# Important to resolve .local domains of printers, otherwise you get an error # Important to resolve .local domains of printers, otherwise you get an error
# like "Impossible to connect to XXX.local: Name or service not known" # like "Impossible to connect to XXX.local: Name or service not known"
@ -11,6 +6,7 @@
hardware.sane.enable = true; hardware.sane.enable = true;
services.paperless = { services.paperless = {
# work in progress
enable = false; enable = false;
passwordFile = builtins.toFile "password" "admin"; passwordFile = builtins.toFile "password" "admin";
}; };