Files
nixos/overlays/default.nix
T

35 lines
903 B
Nix
Raw Normal View History

2024-10-19 10:45:47 -05:00
_final: prev:
2022-10-15 00:19:38 -05:00
rec {
## Testing adding python packages in the correct manner
pythonPackagesExtensions = (prev.pythonPackagesExtensions or [ ]) ++ [
(
python-final: _:
let
cp = python-final.callPackage;
in
{
2025-01-01 20:50:04 -06:00
daikinone = cp ./daikinone.nix { };
xonsh-apipenv = cp ./xonsh-apipenv.nix { };
}
)
];
2023-06-13 09:39:32 -05:00
2025-01-08 08:05:24 -06:00
qemu = prev.qemu.override { sdlSupport = true; };
# Overrides of packages
2025-11-19 14:25:35 -06:00
attic-client = prev.attic-client.overrideAttrs {
patches = prev.attic-client.patches ++ [ ./attic-client.patch ];
};
libbluray-custom = prev.libbluray.override {
withAACS = true;
withBDplus = true;
};
handbrake = prev.handbrake.override { libbluray = libbluray-custom; };
pipenv-ivr = prev.callPackage ./pipenv.nix { };
2025-01-07 10:58:24 -06:00
OVMFFull = prev.OVMFFull.override {
secureBoot = true;
msVarsTemplate = true;
tpmSupport = true;
};
2022-05-04 13:52:38 -05:00
}