mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
20 lines
331 B
Nix
20 lines
331 B
Nix
|
{ inputs', config', ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
../../common/nixpkgs.nix
|
||
|
];
|
||
|
|
||
|
nixpkgs.overlays =
|
||
|
(with config'.flake.overlays; [
|
||
|
emacsclient-remote
|
||
|
magic-screenshot
|
||
|
emacs-rofi
|
||
|
tree-sitter-grammars
|
||
|
emacs-master-nativecomp
|
||
|
])
|
||
|
++
|
||
|
(with inputs'.nixng.overlays; [
|
||
|
default
|
||
|
]);
|
||
|
}
|