43 lines
741 B
Nix
43 lines
741 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
options,
|
|
...
|
|
}:
|
|
{
|
|
#programs.ccache.packageNames = [
|
|
# "agenix"
|
|
# "mcontrolcenter"
|
|
#];
|
|
|
|
nixpkgs.overlays =
|
|
(map
|
|
(
|
|
f:
|
|
(
|
|
final: prev:
|
|
(import f {
|
|
inherit
|
|
final
|
|
prev
|
|
lib
|
|
config
|
|
inputs
|
|
;
|
|
})
|
|
)
|
|
)
|
|
[
|
|
./lua_update.nix
|
|
./matrix-appservice-discord.nix
|
|
# ./ccache-wrapper.nix
|
|
./factorio.nix
|
|
./ranger.nix
|
|
./vesktop.nix
|
|
# ./grpcio-tools.nix
|
|
]
|
|
)
|
|
++ [ (import ./global/overlays.nix) ];
|
|
nix.nixPath = options.nix.nixPath.default ++ [ "nixpkgs-overlays=${./global}" ];
|
|
}
|