dotfiles/nixos/systems/inkbook/nixpkgs.nix
magic_rb 4435cdfec7
Move out custom kernels and uboots into overlays
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-08-14 22:21:42 +02:00

19 lines
235 B
Nix

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