dotfiles/nixos/systems/heater/nixpkgs.nix
magic_rb 6f18aa5f55
Fixup heater, prepare for compute rig
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-03-30 14:52:58 +01:00

18 lines
236 B
Nix

{
inputs',
config',
...
}: {
imports = [
../../common/nixpkgs.nix
];
nixpkgs.overlays =
(with config'.flake.overlays; [
emacsclient-remote
])
++ (with inputs'.nixng.overlays; [
default
]);
}