mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
e8a2007a29
Signed-off-by: magic_rb <magic_rb@redalder.org>
24 lines
421 B
Nix
24 lines
421 B
Nix
{ inputs', config', config, ... }:
|
|
{
|
|
imports = [
|
|
../../common/nixpkgs.nix
|
|
];
|
|
|
|
nixpkgs.overlays =
|
|
(with config'.flake.overlays; [
|
|
udp-over-tcp
|
|
emacsclient-remote
|
|
magic-screenshot
|
|
emacs-rofi
|
|
tree-sitter-grammars
|
|
emacs-master-nativecomp
|
|
rolling_datasets
|
|
virtiofsd-zfs
|
|
ledger-compat
|
|
])
|
|
++
|
|
(with inputs'.nixng.overlays; [
|
|
default
|
|
]);
|
|
}
|