mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
abf5e039a5
Signed-off-by: Magic_RB <magic_rb@redalder.org>
39 lines
979 B
Nix
39 lines
979 B
Nix
inputs:
|
|
final: prev:
|
|
let
|
|
hunspellWithDicts = prev.callPackage ./hunspell-with-dicts.nix {
|
|
dicts = with prev.hunspellDicts; [ en_US ];
|
|
};
|
|
nixpkgs-unstable = import inputs.nixpkgs-unstable
|
|
{ system = prev.stdenv.system; };
|
|
in
|
|
{
|
|
magic_rb = prev.magic_rb or {} // {
|
|
emacs = prev.callPackage ./emacs-bundle.nix rec {
|
|
emacsOverlay = inputs.emacs-overlay.overlay prev prev;
|
|
emacsSrc = inputs.emacs;
|
|
vtermModule = inputs.vtermModule;
|
|
|
|
emacsPackages = with nixpkgs-unstable;
|
|
[
|
|
hunspellWithDicts
|
|
|
|
sqlite
|
|
gcc
|
|
|
|
ghostscript
|
|
imagemagick
|
|
(texlive.combine { inherit (texlive) dvisvgm scheme-small preview siunitx amsmath ulem dvipng wrapfig cancel capt-of bytefield chemfig simplekv; }) # gensymb is not here, dont add
|
|
texlab
|
|
|
|
(rWrapper.override { packages = []; })
|
|
|
|
gnumake
|
|
clang-tools
|
|
|
|
rnix-lsp
|
|
];
|
|
};
|
|
};
|
|
}
|