8 lines
169 B
Nix
8 lines
169 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
config = mkIf (deviceType == "computer" || deviceType == "tv" ) {
|
|
# Enable CUPS to print documents.
|
|
services.printing.enable = true;
|
|
};
|
|
} |