mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 02:26:14 +01:00
19 lines
290 B
Nix
19 lines
290 B
Nix
{ inputs', config', config, ... }:
|
|
{
|
|
imports = [
|
|
../../common/nixpkgs.nix
|
|
];
|
|
|
|
nixpkgs.overlays =
|
|
(with config'.flake.overlays; [
|
|
udp-over-tcp
|
|
emacsclient-remote
|
|
zfs-relmount
|
|
itp
|
|
])
|
|
++
|
|
(with inputs'.nixng.overlays; [
|
|
default
|
|
]);
|
|
}
|