From 46d534c1c1a78d978b0aa567f533c2a07dcdd240 Mon Sep 17 00:00:00 2001 From: Andre Date: Thu, 3 Oct 2024 10:26:56 -0400 Subject: [PATCH] Desktops: disable printing.browsed --- modules/ui/desktops/common.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/modules/ui/desktops/common.nix b/modules/ui/desktops/common.nix index 81c943f..5e8ecf7 100644 --- a/modules/ui/desktops/common.nix +++ b/modules/ui/desktops/common.nix @@ -78,20 +78,13 @@ in # Enable touchpad support (enabled by default in most desktop managers, buuuut just in case). libinput.enable = true; - # Enable printing support, but disable browsed per . + # Enable printing support, but disable browsed per https://discourse.nixos.org/t/cups-cups-filters-and-libppd-security-issues/52780. printing = { enable = true; - # FIXME: Once this option's available, uncomment it and remove the `systemd.services.cups-browsed` section below. - # browsed.enable = false; + browsed.enable = false; }; }; - # Disable broswed per https://discourse.nixos.org/t/cups-cups-filters-and-libppd-security-issues/52780 - systemd.services.cups-browsed = { - enable = false; - unitConfig.Mask = true; - }; - # Support for AppImage files programs.appimage = { enable = true;