2023-06-28-12-47-21

This commit is contained in:
Alexander Szczepanski
2023-06-28 12:47:21 +02:00
parent ee7aff8404
commit 8ea95b95d6
9 changed files with 150 additions and 115 deletions

9
configs/printing.nix Normal file
View File

@ -0,0 +1,9 @@
{ config, pkgs, lib, ... }:
{
services = {
printing = {
enable = true;
drivers = [ pkgs.brlaser ];
};
};
}