Files
2026-05-02 12:52:08 +02:00

8 lines
169 B
Nix

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