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.url = "git+https://tangled.sh/@tangled.sh/core";
7 };
8
9 outputs = { self, tangledCore }: {
10 nixosModules.default = import ./module.nix tangledCore;
11 };
12}