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 + }); + }) + ]; }