diff options
| author | seth <[email protected]> | 2024-05-22 01:36:12 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-05-22 16:21:31 -0600 |
| commit | 5092d107cd85187678383a0ea7dbcfbaef539064 (patch) | |
| tree | d4c162807ac5bbaf8577633699a4a9e9c0145210 | |
| parent | 5c0438c40fd53127d4f59f22ba8bc8ba6a2ca05f (diff) | |
flake: use nixpkgs from github directly
| -rw-r--r-- | flake.lock | 18 | ||||
| -rw-r--r-- | flake.nix | 4 |
2 files changed, 13 insertions, 9 deletions
@@ -2,16 +2,18 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1715266358, - "narHash": "sha256-doPgfj+7FFe9rfzWo1siAV2mVCasW+Bh8I1cToAXEE4=", - "rev": "f1010e0469db743d14519a1efd37e23f8513d714", - "revCount": 623656, - "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.623656%2Brev-f1010e0469db743d14519a1efd37e23f8513d714/018f6170-2659-7e6f-b922-28ba703cc7f5/source.tar.gz" + "lastModified": 1716312448, + "narHash": "sha256-PH3w5av8d+TdwCkiWN4UPBTxrD9MpxIQPDVWctlomVo=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "e381a1288138aceda0ac63db32c7be545b446921", + "type": "github" }, "original": { - "type": "tarball", - "url": "https://flakehub.com/f/NixOS/nixpkgs/0.1.%2A.tar.gz" + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" } }, "root": { @@ -6,7 +6,9 @@ extra-trusted-public-keys = ["getchoo.cachix.org-1:ftdbAUJVNaFonM0obRGgR5+nUmdLMM+AOvDOSx0z5tE="]; }; - inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz"; + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + }; outputs = { nixpkgs, |
