dotfiles/nixos/systems/heater/nixpkgs.nix
magic_rb ad899971d6
Add thingiverse-downloader to heater
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-03-02 22:39:07 +01:00

24 lines
382 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
ledger-compat
thingiverse-downloader
])
++ (with inputs'.nixng.overlays; [
default
]);
}