The source code for my personal website and blog. hanna.lol
blog website
at main 20 lines 492 B view raw
1{ 2 inputs = { 3 nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; 4 flake-parts.url = "github:hercules-ci/flake-parts/main"; 5 }; 6 7 outputs = { flake-parts, ... }@inputs: 8 flake-parts.lib.mkFlake { inherit inputs; } { 9 systems = [ "x86_64-linux" "aarch64-darwin" ]; 10 11 perSystem = { pkgs, ... }: { 12 devShells.default = pkgs.mkShell { 13 nativeBuildInputs = with pkgs; [ 14 nodejs_latest 15 pnpm 16 ]; 17 }; 18 }; 19 }; 20}