This repository has no description
0

Configure Feed

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

1{ 2 description = "read if cute"; 3 4 inputs = { 5 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # needed for easy overriding 6 tangledCore = { 7 url = "git+https://tangled.sh/@tangled.sh/core"; 8 9 inputs = { 10 # upstream pinned stuff like git repos not included because lockfile already stores rev 11 nixpkgs.follows = "nixpkgs"; 12 lucide-src = { 13 url = "https://unpkg.com/lucide@0.479.0"; 14 flake = false; 15 }; 16 }; 17 }; 18 }; 19 20 outputs = { tangledCore, ... }: { 21 nixosModules.default = import ./module.nix tangledCore; 22 }; 23}