Break up default.nix into two more files

This commit is contained in:
kat witch 2021-08-06 04:11:06 +01:00
parent f17cb11f9f
commit 042bd05bcf
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
3 changed files with 40 additions and 36 deletions

13
meta-base.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, lib, ... }: {
config = {
runners = {
lazy = {
file = ./.;
args = [ "--show-trace" ];
};
};
_module.args = {
pkgs = lib.mkDefault pkgs;
};
};
}