crisp-theme.git

git clone https://git.crispbyte.dev/crisp-theme.git

cheddar  ·  2025-04-17

shell.nix

1{ pkgs ? import <nixpkgs> {} }:
2  pkgs.mkShell {
3    # nativeBuildInputs is usually what you want -- tools you need to run
4    nativeBuildInputs = with pkgs.buildPackages; [
5        nodejs_22
6    ];
7}