feat: printing

This commit is contained in:
2024-11-15 23:41:41 +01:00
parent f57164d8e1
commit 6b8cec9963

View File

@@ -1,3 +1,10 @@
{ pkgs, ... }:
{
services.printing.enable = true;
services.printing = {
enable = true;
drivers = with pkgs; [
samsung-unified-linux-driver
splix
];
};
}