hosts/hosts/printer.nix
2023-02-26 20:08:39 +01:00

8 lines
128 B
Nix

{ pkgs, ... }:
{
services.printing = {
enable = true;
drivers = with pkgs; [ postscript-lexmark ];
};
}