dotfiles/nixos/systems/grasshopper/nixpkgs.nix

14 lines
204 B
Nix
Raw Normal View History

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