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