9 lines
191 B
Nix
9 lines
191 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.printing = {
|
|
enable = true;
|
|
startWhenNeeded = true;
|
|
drivers = with pkgs; [ gutenprint hplip splix samsung-unified-linux-driver ];
|
|
};
|
|
}
|