chore: fix relative paths

This commit is contained in:
Khaïs COLIN 2024-08-23 14:19:29 +02:00
parent 1f6c93d6a2
commit ded2acef35
2 changed files with 9 additions and 9 deletions

12
nixos/flake.lock generated
View file

@ -123,11 +123,11 @@
"locked": { "locked": {
"lastModified": 1, "lastModified": 1,
"narHash": "sha256-R5QjjQf2bcDOy/pJfBP4EZTkXUucBOWNCZ6N0UQbISo=", "narHash": "sha256-R5QjjQf2bcDOy/pJfBP4EZTkXUucBOWNCZ6N0UQbISo=",
"path": "./breezex-cursor", "path": "breezex-cursor",
"type": "path" "type": "path"
}, },
"original": { "original": {
"path": "./breezex-cursor", "path": "breezex-cursor",
"type": "path" "type": "path"
} }
}, },
@ -490,11 +490,11 @@
"locked": { "locked": {
"lastModified": 1, "lastModified": 1,
"narHash": "sha256-QB4MH0l0Pb57F+ClG0NR9xZJdUExT/S1VDFey2bh2y8=", "narHash": "sha256-QB4MH0l0Pb57F+ClG0NR9xZJdUExT/S1VDFey2bh2y8=",
"path": "./nixvim", "path": "nixvim",
"type": "path" "type": "path"
}, },
"original": { "original": {
"path": "./nixvim", "path": "nixvim",
"type": "path" "type": "path"
} }
}, },
@ -559,11 +559,11 @@
"locked": { "locked": {
"lastModified": 1, "lastModified": 1,
"narHash": "sha256-m7DC7MqCfT0uwD0BhdLfwyCw8DyKVlf9rAu+g29tmMo=", "narHash": "sha256-m7DC7MqCfT0uwD0BhdLfwyCw8DyKVlf9rAu+g29tmMo=",
"path": "./river-shifttags", "path": "river-shifttags",
"type": "path" "type": "path"
}, },
"original": { "original": {
"path": "./river-shifttags", "path": "river-shifttags",
"type": "path" "type": "path"
} }
}, },

View file

@ -14,17 +14,17 @@
}; };
nixvim = { nixvim = {
url = "path:./nixvim"; url = "path:nixvim";
inputs.nixpkgs.follows = "nixpkgs-unstable"; inputs.nixpkgs.follows = "nixpkgs-unstable";
}; };
river-shifttags = { river-shifttags = {
url = "path:./river-shifttags"; url = "path:river-shifttags";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
breezex-cursor = { breezex-cursor = {
url = "path:./breezex-cursor"; url = "path:breezex-cursor";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };