mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-22 15:04:46 +03:00
move v1/nix to top-level
This commit is contained in:
parent
fcfda68490
commit
96a11d4197
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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"
|
||||
|
@ -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";
|
||||
}
|
@ -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
Loading…
Reference in New Issue
Block a user