refactor: add overlay stub

This commit is contained in:
steveej 2024-12-05 11:07:07 +01:00
parent 46229fc2b9
commit 4ad2bf71ca

View file

@ -46,8 +46,18 @@
];
perSystem =
{ pkgs, inputs' , ... }:
{ pkgs, inputs' , system, lib, ... }:
{
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
(final: prev: {
# overlay here
})
];
config = { };
};
devShells = rec {
default = pkgs.mkShellNoCC { packages = ci.nativeBuildInputs; };