1
0
Fork 0
forked from foxora/nix
flake-foxora/homes/modules/de/awww.nix

15 lines
326 B
Nix
Raw Normal View History

2026-02-12 18:53:24 +00:00
{
2026-02-13 23:27:35 +10:00
inputs,
upkgs,
system,
...
}: {
home.packages = [
(inputs.awww.packages.${system}.awww.overrideAttrs (old: {
cargoBuildFlags = ["--features=avif"];
buildInputs = (old.buildInputs or []) ++ [upkgs.dav1d];
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [upkgs.pkg-config];
2026-02-12 18:53:24 +00:00
}))
];
}