Basic blue-to-white gradient

This commit is contained in:
k 2026-03-25 19:29:35 -04:00
commit 67fc7ea21d
7 changed files with 275 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rust-analyzer
];
}