This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

flake: unpin lucide

flake.lock updates:
• Updated input 'nixpkgs':
'github:NixOS/nixpkgs/e3e32b642a31e6714ec1b712de8c91a3352ce7e1?narHash=sha256-7rTAMNTY1xoBwz0h7ZMtEcd8LELk9R5TzBPoHuhNSCk%3D' (2025-03-09)
→ 'github:NixOS/nixpkgs/c80f6a7e10b39afcc1894e02ef785b1ad0b0d7e5?narHash=sha256-C7jVfohcGzdZRF6DO%2BybyG/sqpo1h6bZi9T56sxLy%2Bk%3D' (2025-03-15)
• Updated input 'tangledCore':
'git+https://tangled.sh/@tangled.sh/core?ref=refs/heads/master&rev=cc344af0da418b803282054aee90e03b994437d7' (2025-03-10)
→ 'git+https://tangled.sh/@tangled.sh/core?ref=refs/heads/master&rev=d27004cb9772260c5a2005fe1f53f1e44884f79e' (2025-03-17)
• Updated input 'tangledCore/lucide-src':
'https://unpkg.com/lucide@0.479.0?narHash=sha256-SE1Dh%2B%2BH90uJL6w8mMRw0Afbx0CK7HMLp1gCIfWu0%2BU%3D'
→ 'https://unpkg.com/lucide@0.482.0?narHash=sha256-5ipNSxTlQ7627lGgsyZxk7vS1sr9RkrlR8/QMj2Zg6s%3D'

+11 -15
+10 -10
flake.lock
··· 68 68 "lucide-src": { 69 69 "flake": false, 70 70 "locked": { 71 - "narHash": "sha256-SE1Dh++H90uJL6w8mMRw0Afbx0CK7HMLp1gCIfWu0+U=", 71 + "narHash": "sha256-5ipNSxTlQ7627lGgsyZxk7vS1sr9RkrlR8/QMj2Zg6s=", 72 72 "type": "file", 73 - "url": "https://unpkg.com/lucide@0.479.0" 73 + "url": "https://unpkg.com/lucide@0.482.0" 74 74 }, 75 75 "original": { 76 76 "type": "file", 77 - "url": "https://unpkg.com/lucide@0.479.0" 77 + "url": "https://unpkg.com/lucide@0.482.0" 78 78 } 79 79 }, 80 80 "nixpkgs": { 81 81 "locked": { 82 - "lastModified": 1741513245, 83 - "narHash": "sha256-7rTAMNTY1xoBwz0h7ZMtEcd8LELk9R5TzBPoHuhNSCk=", 82 + "lastModified": 1742069588, 83 + "narHash": "sha256-C7jVfohcGzdZRF6DO+ybyG/sqpo1h6bZi9T56sxLy+k=", 84 84 "owner": "NixOS", 85 85 "repo": "nixpkgs", 86 - "rev": "e3e32b642a31e6714ec1b712de8c91a3352ce7e1", 86 + "rev": "c80f6a7e10b39afcc1894e02ef785b1ad0b0d7e5", 87 87 "type": "github" 88 88 }, 89 89 "original": { ··· 111 111 ] 112 112 }, 113 113 "locked": { 114 - "lastModified": 1741644644, 115 - "narHash": "sha256-wAeSEDs89G+2S/CDO8pwgA1OQWj62s61UU62+u6chw4=", 114 + "lastModified": 1742252247, 115 + "narHash": "sha256-4P2cyFbmfi4vO+cH5Rs8T0HjyIM9my7DDehMavPQ4ms=", 116 116 "ref": "refs/heads/master", 117 - "rev": "cc344af0da418b803282054aee90e03b994437d7", 118 - "revCount": 295, 117 + "rev": "d27004cb9772260c5a2005fe1f53f1e44884f79e", 118 + "revCount": 336, 119 119 "type": "git", 120 120 "url": "https://tangled.sh/@tangled.sh/core" 121 121 },
+1 -5
flake.nix
··· 2 2 description = "read if cute"; 3 3 4 4 inputs = { 5 - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # needed for easy overriding 5 + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # needed for easy overriding... and tests 6 6 tangledCore = { 7 7 url = "git+https://tangled.sh/@tangled.sh/core"; 8 8 9 9 inputs = { 10 10 # upstream pinned stuff like git repos not included because lockfile already stores rev 11 11 nixpkgs.follows = "nixpkgs"; 12 - lucide-src = { 13 - url = "https://unpkg.com/lucide@0.479.0"; 14 - flake = false; 15 - }; 16 12 }; 17 13 }; 18 14 };