From beb66ee454bf3cdff8b134ea7606469b6c91e062 Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Wed, 16 Jul 2025 16:02:03 +1000 Subject: [PATCH] modified: hosts/nixos/configuration.nix --- hosts/nixos/configuration.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix index 37f6e2a..7abc817 100644 --- a/hosts/nixos/configuration.nix +++ b/hosts/nixos/configuration.nix @@ -12,7 +12,7 @@ in { nodejs appimage-run seahorse - Remove `brasero` if present +# Remove `brasero` if present ]; @@ -108,5 +108,12 @@ services.xrdp.openFirewall = true; # WantedBy = [ "default.target" ]; # }; # }; - + nixpkgs.overlays = [ + (final: prev: { + brasero = prev.brasero.overrideAttrs (old: { + configureFlags = (old.configureFlags or []) ++ ["--without-dvdauthor"]; + # Or remove dvdauthor from propagatedBuildInputs + }); + }) + ]; }