modified: hosts/nixos/configuration.nix

This commit is contained in:
2025-07-16 16:02:03 +10:00
parent 43a265a092
commit beb66ee454

View File

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