move v1/nix to top-level

This commit is contained in:
DavHau 2023-07-19 15:48:14 +02:00
parent fcfda68490
commit 96a11d4197
102 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@
Automate reproducible packaging for various language ecosystems
<br>
<a href="https://nix-community.github.io/dream2nix/">Documentation</a> |
<a href="https://github.com/nix-community/dream2nix/tree/main/v1/nix/modules/drvs">Examples</a>
<a href="https://github.com/nix-community/dream2nix/tree/main/modules/drvs">Examples</a>
</p>
!!! Warning: dream2nix is unstable software. While simple UX is one of our main focus points, the APIs are still under development. Do expect changes that will break your setup.

View File

@ -8,7 +8,7 @@
Automate reproducible packaging for various language ecosystems
<br>
<a href="https://nix-community.github.io/dream2nix/">Documentation</a> |
<a href="https://github.com/nix-community/dream2nix/tree/main/v1/nix/modules/drvs">Examples</a>
<a href="https://github.com/nix-community/dream2nix/tree/main/modules/drvs">Examples</a>
</p>
!!! Warning: dream2nix is unstable software. While simple UX is one of our main focus points, the APIs are still under development. Do expect changes that will break your setup.

View File

@ -149,7 +149,7 @@
flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
./templates
./v1/nix/modules/flake-parts/all-modules.nix
./modules/flake-parts/all-modules.nix
];
systems = [
"x86_64-linux"

View File

@ -42,5 +42,5 @@ in {
version = l.mkForce "0.0.0";
lock.lockFileRel =
l.mkForce "/v1/nix/modules/drvs/nodejs-no-lock/lock-${system}.json";
l.mkForce "/modules/drvs/nodejs-no-lock/lock-${system}.json";
}

View File

@ -13,9 +13,9 @@
}: let
# A module imported into every package setting up the eval cache
setup = {config, ...}: {
lock.lockFileRel = "/v1/nix/modules/drvs/${config.name}/lock-${system}.json";
lock.lockFileRel = "/modules/drvs/${config.name}/lock-${system}.json";
lock.repoRoot = self;
eval-cache.cacheFileRel = "/v1/nix/modules/drvs/${config.name}/cache-${system}.json";
eval-cache.cacheFileRel = "/modules/drvs/${config.name}/cache-${system}.json";
eval-cache.repoRoot = self;
eval-cache.enable = true;
deps.npm = inputs.nixpkgs.legacyPackages.${system}.nodejs.pkgs.npm.override (old: rec {

Some files were not shown because too many files have changed in this diff Show More