refactor: add overlay stub
This commit is contained in:
parent
46229fc2b9
commit
4ad2bf71ca
1 changed files with 11 additions and 1 deletions
12
flake.nix
12
flake.nix
|
@ -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; };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue