This commit is contained in:
2026-02-25 12:28:00 -05:00
parent f3f76283b3
commit db6534a1eb
7 changed files with 148 additions and 0 deletions

View 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
];
}