mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
16 lines
377 B
Nix
16 lines
377 B
Nix
{
|
|
inputs,
|
|
tree,
|
|
...
|
|
}: [
|
|
inputs.rbw-bitw.overlays.default
|
|
#inputs.arcexprs.overlays.default
|
|
inputs.darwin.overlays.default
|
|
inputs.deploy-rs.overlays.default
|
|
inputs.neorg-overlay.overlays.default
|
|
inputs.niri.overlays.niri
|
|
(import tree.packages.default {inherit inputs tree;})
|
|
(final: prev: {
|
|
wivrn = prev.wivrn.override { cudaSupport = true; };
|
|
})
|
|
]
|