Fix inputs

This commit is contained in:
Sandro - 2024-01-09 22:00:03 +01:00
parent fb9469b363
commit 6eb234285e
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 16 additions and 58 deletions

View File

@ -134,16 +134,16 @@
"nixos-modules": [ "nixos-modules": [
"nixos-modules" "nixos-modules"
], ],
"nixpkgs-lib": [ "nixpkgs": [
"nixos" "nixos"
] ]
}, },
"locked": { "locked": {
"lastModified": 1704201132, "lastModified": 1704833854,
"narHash": "sha256-lLfolQcgXXa6cGBNan3EhCGS70n0emhQ/aVekd+LCSk=", "narHash": "sha256-8uoeDyAO9iRtCcOl8jeBBPj2PEDCWAgpWg/ag0RU8MY=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "48b4b51574d45c5618ba50522534bc3295d62154", "rev": "5e564b980405acaf7a7af14597b113fe99fecc6d",
"revCount": 53, "revCount": 54,
"type": "git", "type": "git",
"url": "https://gitea.c3d2.de/c3d2/nix-user-module.git" "url": "https://gitea.c3d2.de/c3d2/nix-user-module.git"
}, },
@ -262,24 +262,6 @@
"type": "github" "type": "github"
} }
}, },
"flake-utils_2": {
"inputs": {
"systems": "systems_2"
},
"locked": {
"lastModified": 1701680307,
"narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"heliwatch": { "heliwatch": {
"inputs": { "inputs": {
"fenix": [ "fenix": [
@ -412,8 +394,12 @@
}, },
"nixos-modules": { "nixos-modules": {
"inputs": { "inputs": {
"flake-utils": "flake-utils_2", "flake-utils": [
"nixpkgs": "nixpkgs" "flake-utils"
],
"nixpkgs": [
"nixos"
]
}, },
"locked": { "locked": {
"lastModified": 1704737997, "lastModified": 1704737997,
@ -429,22 +415,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs": {
"locked": {
"lastModified": 1704194953,
"narHash": "sha256-RtDKd8Mynhe5CFnVT8s0/0yqtWFMM9LmCzXv/YKxnq4=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "bd645e8668ec6612439a9ee7e71f7eac4099d4f6",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"oparl-scraper": { "oparl-scraper": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -734,21 +704,6 @@
"type": "github" "type": "github"
} }
}, },
"systems_2": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"ticker": { "ticker": {
"inputs": { "inputs": {
"fenix": [ "fenix": [

View File

@ -65,7 +65,7 @@
url = "git+https://gitea.c3d2.de/c3d2/nix-user-module.git"; url = "git+https://gitea.c3d2.de/c3d2/nix-user-module.git";
inputs = { inputs = {
nixos-modules.follows = "nixos-modules"; nixos-modules.follows = "nixos-modules";
nixpkgs-lib.follows = "nixos"; nixpkgs.follows = "nixos";
}; };
}; };
deployment = { deployment = {
@ -118,7 +118,10 @@
# NOTE: mirrored to https://gitea.c3d2.de/c3d2/nixos-modules # NOTE: mirrored to https://gitea.c3d2.de/c3d2/nixos-modules
# If there are questions, things should be added or changed, contact sandro # If there are questions, things should be added or changed, contact sandro
url = "github:SuperSandro2000/nixos-modules"; url = "github:SuperSandro2000/nixos-modules";
inputs.nixpkgs-lib.follows = "nixos"; inputs = {
flake-utils.follows = "flake-utils";
nixpkgs.follows = "nixos";
};
}; };
oparl-scraper = { oparl-scraper = {
url = "github:offenesdresden/ratsinfo-scraper/oparl"; url = "github:offenesdresden/ratsinfo-scraper/oparl";