organization p2
This commit is contained in:
37
config/overlay.nix
Normal file
37
config/overlay.nix
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
mkpkgs,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
pkgs = mkpkgs inputs.nixpkgs;
|
||||
in
|
||||
_final: prev: {
|
||||
nautilus = prev.nautilus.overrideAttrs (old: {
|
||||
buildInputs =
|
||||
old.buildInputs
|
||||
++ builtins.attrValues {
|
||||
inherit (pkgs.gst_all_1)
|
||||
gst-plugins-good
|
||||
gst-plugins-bad
|
||||
;
|
||||
};
|
||||
});
|
||||
lutris = prev.lutris.override {
|
||||
extraPkgs =
|
||||
pkgs:
|
||||
builtins.attrValues {
|
||||
inherit (pkgs) pango winetricks;
|
||||
}
|
||||
++ (with pkgs; [
|
||||
wine64Packages.stable
|
||||
wineWowPackages.stable
|
||||
]);
|
||||
};
|
||||
handbrake = prev.handbrake.override { useGtk = true; };
|
||||
ripgrep = prev.ripgrep.override { withPCRE2 = true; };
|
||||
discord = prev.discord.override {
|
||||
withVencord = true;
|
||||
withOpenASAR = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user