Video and Nix GC options

Add Nix gc options to keep the store reasonably cleaned up
Add GStreamer to Jude build
Add libbluray overlay with AACS support
This commit is contained in:
Greg Hellings
2023-08-21 13:14:51 -05:00
parent 51460f901f
commit 51b2cff831
3 changed files with 27 additions and 5 deletions
+9 -5
View File
@@ -61,6 +61,10 @@ in rec {
pkgs = final.pkgs;
};
inject = prev.callPackage ./inject.nix { inherit (final) pkgs; };
libbluray = prev.libbluray.override {
withAACS = true;
withBDplus = true;
};
setup-ssh = prev.callPackage ./setup-ssh.nix {
pkgs = final.pkgs;
};
@@ -73,9 +77,9 @@ in rec {
];
});
bitwarden = macOver ./mac/bitwarden.nix "bitwarden";
gnucash = macOver ./mac/gnucash.nix "gnucash";
handbrake = macOver ./mac/handbrake.nix "handbrake";
onlyoffice-bin = macOver ./mac/onlyoffice-bin.nix "onlyoffice-bin";
vlc = macOver ./mac/vlc.nix "vlc";
#bitwarden = macOver ./mac/bitwarden.nix "bitwarden";
#gnucash = macOver ./mac/gnucash.nix "gnucash";
#handbrake = macOver ./mac/handbrake.nix "handbrake";
#onlyoffice-bin = macOver ./mac/onlyoffice-bin.nix "onlyoffice-bin";
#vlc = macOver ./mac/vlc.nix "vlc";
}