summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2022-11-13 22:39:40 +0100
committerQuentin Aristote <quentin@aristote.fr>2022-11-13 22:39:40 +0100
commit19a0c33863da3223145e4e1c1315d5332ff53df5 (patch)
tree0f2f0de28a080cb8003c5b18c7b0f20767bdcd76
parentb0cb171f641dca185cad98506d6c0e104c67dab0 (diff)
flake: use utils from registry; debug input follows
-rw-r--r--flake.lock19
-rw-r--r--flake.nix13
2 files changed, 16 insertions, 16 deletions
diff --git a/flake.lock b/flake.lock
index 7b90367..8d5c7e4 100644
--- a/flake.lock
+++ b/flake.lock
@@ -2,15 +2,19 @@
"nodes": {
"data": {
"inputs": {
- "flake-utils": [],
- "nixpkgs": []
+ "flake-utils": [
+ "flake-utils"
+ ],
+ "nixpkgs": [
+ "nixpkgs"
+ ]
},
"locked": {
- "lastModified": 1668340813,
- "narHash": "sha256-S3rKgiJqBGsH69zU/A3tlogMC/jpICHtSAzd/CBTVUI=",
+ "lastModified": 1668375475,
+ "narHash": "sha256-rp+tPVJkm8QWG48MBhk/+qblvYOmSpLamfAZkhMnyKw=",
"owner": "qaristote",
"repo": "info",
- "rev": "946290203abdc6075b01a40672509bbaabd260d5",
+ "rev": "5a8c11a5fae47a8eaad7a90ac3a70020243ceb48",
"type": "github"
},
"original": {
@@ -29,9 +33,8 @@
"type": "github"
},
"original": {
- "owner": "numtide",
- "repo": "flake-utils",
- "type": "github"
+ "id": "flake-utils",
+ "type": "indirect"
}
},
"nixpkgs": {
diff --git a/flake.nix b/flake.nix
index 8da7bfb..dabe071 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,14 +1,11 @@
{
description = "Source code of Quentin Aristote's personal webpage.";
- inputs = {
- flake-utils.url = "github:numtide/flake-utils";
- data = {
- url = "github:qaristote/info";
- inputs = {
- nixpkgs.follows = "";
- flake-utils.follows = "";
- };
+ inputs.data = {
+ url = "github:qaristote/info";
+ inputs = {
+ nixpkgs.follows = "/nixpkgs";
+ flake-utils.follows = "/flake-utils";
};
};