grimm-nixos-laptop/overlays/default.nix

44 lines
692 B
Nix
Raw Normal View History

2024-05-31 17:33:40 +02:00
{
config,
lib,
inputs,
...
}:
2024-05-07 23:31:41 +02:00
{
2024-06-13 22:56:30 +02:00
#programs.ccache.packageNames = [
# "agenix"
# "mcontrolcenter"
#];
2024-05-09 21:56:59 +02:00
2024-05-07 23:31:41 +02:00
nixpkgs.overlays =
map
(
f:
(
final: prev:
(import f {
inherit
final
prev
lib
config
2024-05-31 17:33:40 +02:00
inputs
2024-05-07 23:31:41 +02:00
;
})
)
)
[
2024-05-09 10:54:00 +02:00
./matrix-appservice-discord.nix
2024-05-07 23:31:41 +02:00
./deskwhich.nix
2024-05-10 17:02:24 +02:00
./tlpui.nix
2024-08-15 14:59:23 +02:00
# ./mcontrolcenter.nix
2024-06-13 22:56:30 +02:00
# ./ccache-wrapper.nix
2024-05-11 22:55:59 +02:00
./searchclip.nix
2024-05-16 11:59:05 +02:00
./confwhich.nix
./rfindup.nix
2024-05-25 23:14:08 +02:00
./glibc-eac.nix
2024-05-29 09:47:17 +02:00
./factorio.nix
2024-05-31 17:33:40 +02:00
./ranger.nix
2024-05-07 23:31:41 +02:00
];
}