This repository has no description
0

Configure Feed

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

flake: pin inputs

flake.lock updates:
• Updated input 'tangledCore/lucide-src':
'https://unpkg.com/lucide@latest?narHash=sha256-h3LsMyt4gaugENlg07Uxl96j89O5B2ZaO6fQ07cjZgQ%3D'
→ 'https://unpkg.com/lucide@0.479.0?narHash=sha256-SE1Dh%2B%2BH90uJL6w8mMRw0Afbx0CK7HMLp1gCIfWu0%2BU%3D'
• Updated input 'tangledCore/nixpkgs':
'github:nixos/nixpkgs/2ffed2bc3d27861b821f9bec127cf51a4dbfabb4?narHash=sha256-m6Lz7cRoZ8GS7tziYrNWv0WXTYtKx3oOC9Bwa6a13EA%3D' (2025-03-02)
→ 'github:NixOS/nixpkgs/e3e32b642a31e6714ec1b712de8c91a3352ce7e1?narHash=sha256-7rTAMNTY1xoBwz0h7ZMtEcd8LELk9R5TzBPoHuhNSCk%3D' (2025-03-09)

+22 -10
+9 -8
flake.lock
··· 68 68 "lucide-src": { 69 69 "flake": false, 70 70 "locked": { 71 - "narHash": "sha256-h3LsMyt4gaugENlg07Uxl96j89O5B2ZaO6fQ07cjZgQ=", 71 + "narHash": "sha256-SE1Dh++H90uJL6w8mMRw0Afbx0CK7HMLp1gCIfWu0+U=", 72 72 "type": "file", 73 - "url": "https://unpkg.com/lucide@latest" 73 + "url": "https://unpkg.com/lucide@0.479.0" 74 74 }, 75 75 "original": { 76 76 "type": "file", 77 - "url": "https://unpkg.com/lucide@latest" 77 + "url": "https://unpkg.com/lucide@0.479.0" 78 78 } 79 79 }, 80 80 "nixpkgs": { 81 81 "locked": { 82 - "lastModified": 1740938536, 83 - "narHash": "sha256-m6Lz7cRoZ8GS7tziYrNWv0WXTYtKx3oOC9Bwa6a13EA=", 84 - "owner": "nixos", 82 + "lastModified": 1741513245, 83 + "narHash": "sha256-7rTAMNTY1xoBwz0h7ZMtEcd8LELk9R5TzBPoHuhNSCk=", 84 + "owner": "NixOS", 85 85 "repo": "nixpkgs", 86 - "rev": "2ffed2bc3d27861b821f9bec127cf51a4dbfabb4", 86 + "rev": "e3e32b642a31e6714ec1b712de8c91a3352ce7e1", 87 87 "type": "github" 88 88 }, 89 89 "original": { 90 - "owner": "nixos", 90 + "owner": "NixOS", 91 + "ref": "nixos-unstable", 91 92 "repo": "nixpkgs", 92 93 "type": "github" 93 94 }
+13 -2
flake.nix
··· 3 3 4 4 inputs = { 5 5 # nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # probably not needed until we add checks 6 - tangledCore.url = "git+https://tangled.sh/@tangled.sh/core"; 6 + tangledCore = { 7 + url = "git+https://tangled.sh/@tangled.sh/core"; 8 + 9 + inputs = { 10 + # upstream pinned stuff are not included 11 + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; 12 + lucide-src = { 13 + url = "https://unpkg.com/lucide@0.479.0"; 14 + flake = false; 15 + }; 16 + }; 17 + }; 7 18 }; 8 19 9 - outputs = { self, tangledCore }: { 20 + outputs = { tangledCore, ... }: { 10 21 nixosModules.default = import ./module.nix tangledCore; 11 22 }; 12 23 }