This repository has no description
1{
2 description = "read if cute";
3
4 inputs = {
5 # nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # probably not needed until we add checks
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 };
18 };
19
20 outputs = { tangledCore, ... }: {
21 nixosModules.default = import ./module.nix tangledCore;
22 };
23}