Files
nix-config/hosts/modules/printing.nix
2024-11-15 23:41:41 +01:00

11 lines
148 B
Nix

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