modules
This commit is contained in:
10
modules/deep-dive/eval.nix
Normal file
10
modules/deep-dive/eval.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
let
|
||||
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-25.11";
|
||||
pkgs = import nixpkgs { config = {}; overlays = []; };
|
||||
in
|
||||
pkgs.lib.evalModules {
|
||||
modules = [
|
||||
({ config, ... }: { config._module.args = { inherit pkgs; }; })
|
||||
./default.nix
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user