mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
519d7b3841
Signed-off-by: Magic_RB <magic_rb@redalder.org>
17 lines
253 B
Nix
17 lines
253 B
Nix
{ inputs', config', ... }:
|
|
{
|
|
imports = [
|
|
../../common/nixpkgs.nix
|
|
];
|
|
|
|
nixpkgs.overlays =
|
|
(with config'.flake.overlays; [
|
|
udp-over-tcp
|
|
emacsclient-remote
|
|
])
|
|
++
|
|
(with inputs'.nixng.overlays; [
|
|
default
|
|
]);
|
|
}
|