avoid update loops by prefixing input with path:

This commit is contained in:
Anthony Rodriguez 2024-08-25 22:26:27 +02:00
parent 850d767a8c
commit 1eef77d6fc
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 3 additions and 3 deletions

View file

@ -288,11 +288,11 @@
"locked": { "locked": {
"lastModified": 1, "lastModified": 1,
"narHash": "sha256-krjVFFsJfKvYRvOoBkZ8xr+OEZ5nfmgf4oxmE/h6Q9c=", "narHash": "sha256-krjVFFsJfKvYRvOoBkZ8xr+OEZ5nfmgf4oxmE/h6Q9c=",
"path": "/nix/store/0blxgxs9nfzfi2fj1gy59l8660kldyci-source/shells", "path": "./shells",
"type": "path" "type": "path"
}, },
"original": { "original": {
"path": "/nix/store/0blxgxs9nfzfi2fj1gy59l8660kldyci-source/shells", "path": "./shells",
"type": "path" "type": "path"
} }
}, },

View file

@ -15,7 +15,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
shells = { shells = {
url = "./shells"; url = "path:./shells";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };