mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
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
|
||
|
]);
|
||
|
}
|