Deduplicate some inputs

This commit is contained in:
Tim Schubert 2023-09-17 19:50:19 +02:00
parent 43f46c1fdc
commit 4f9349afce
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
2 changed files with 13 additions and 43 deletions

53
flake.lock generated
View file

@ -76,21 +76,6 @@
"type": "github" "type": "github"
} }
}, },
"flake-utils_2": {
"locked": {
"lastModified": 1623875721,
"narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "f7e004a55b120c02ecb6219596820fcd32ca8772",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -115,7 +100,9 @@
"homePage": { "homePage": {
"inputs": { "inputs": {
"hugo-theme-anubis": "hugo-theme-anubis", "hugo-theme-anubis": "hugo-theme-anubis",
"nixpkgs": "nixpkgs" "nixpkgs": [
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1655227494, "lastModified": 1655227494,
@ -200,19 +187,6 @@
} }
}, },
"nixpkgs": { "nixpkgs": {
"locked": {
"lastModified": 1629226339,
"narHash": "sha256-szvgmQcUJM3Kv/wNyIn+wtMrrvsks0bk9JOqI2Ij8Ao=",
"path": "/nix/store/vy5l0dvdwwhyc988z185f9i7rqbc1n8y-source",
"rev": "2435ea48c3b295d9cd490535730bb13ab8cfd8a5",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1694499547, "lastModified": 1694499547,
"narHash": "sha256-R7xMz1Iia6JthWRHDn36s/E248WB1/je62ovC/dUVKI=", "narHash": "sha256-R7xMz1Iia6JthWRHDn36s/E248WB1/je62ovC/dUVKI=",
@ -228,21 +202,14 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_3": {
"locked": {
"narHash": "sha256-Ccpot1h/rV8MgcngDp5OrdmLTMaUTbStZTR5/sI7zW0=",
"path": "/nix/store/n04lw5nrskzmz7rv17p09qrnjanfkg5d-source",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"recipemd": { "recipemd": {
"inputs": { "inputs": {
"flake-utils": "flake-utils_2", "flake-utils": [
"nixpkgs": "nixpkgs_3" "flake-utils"
],
"nixpkgs": [
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1647022391, "lastModified": 1647022391,
@ -269,7 +236,7 @@
"homePage": "homePage", "homePage": "homePage",
"nixos-generators": "nixos-generators", "nixos-generators": "nixos-generators",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs",
"recipemd": "recipemd" "recipemd": "recipemd"
} }
}, },

View file

@ -11,9 +11,12 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
homePage = { homePage = {
url = "github:dadada/dadada.li"; url = "github:dadada/dadada.li";
inputs.nixpkgs.follows = "nixpkgs";
}; };
recipemd = { recipemd = {
url = "github:dadada/recipemd/nix-flake"; url = "github:dadada/recipemd/nix-flake";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
}; };
agenix = { agenix = {
url = "github:ryantm/agenix/0.13.0"; url = "github:ryantm/agenix/0.13.0";