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;