My resume
0

Configure Feed

Select the types of activity you want to include in your feed.

Initialize flake

Alex van de Sandt (Jul 14, 2026, 3:18 PM -0500) 4d9b6d32 fc247e9b

+84
+60
flake.lock
··· 1 + { 2 + "nodes": { 3 + "flake-parts": { 4 + "inputs": { 5 + "nixpkgs-lib": "nixpkgs-lib" 6 + }, 7 + "locked": { 8 + "lastModified": 1782949081, 9 + "narHash": "sha256-vp6Y/Grm98ESt6ceOkWiHWyZRDV3J1RID4w+6NWK9yA=", 10 + "owner": "hercules-ci", 11 + "repo": "flake-parts", 12 + "rev": "17c9d6cdfc60c64f4ee8d306f9bc0b4ccb51481e", 13 + "type": "github" 14 + }, 15 + "original": { 16 + "id": "flake-parts", 17 + "type": "indirect" 18 + } 19 + }, 20 + "nixpkgs": { 21 + "locked": { 22 + "lastModified": 1784007870, 23 + "narHash": "sha256-djcLt/JJphyNt4eDY9XTly+/WbCK5lqWq9lSgCmJkkQ=", 24 + "owner": "nixos", 25 + "repo": "nixpkgs", 26 + "rev": "18b9261cb3294b6d2a06d03f96872827b8fe2698", 27 + "type": "github" 28 + }, 29 + "original": { 30 + "owner": "nixos", 31 + "ref": "nixos-unstable", 32 + "repo": "nixpkgs", 33 + "type": "github" 34 + } 35 + }, 36 + "nixpkgs-lib": { 37 + "locked": { 38 + "lastModified": 1782614948, 39 + "narHash": "sha256-ePjCwr1sNm9NYUqywL7QfK3JnlS015msC+eBu2zKlp8=", 40 + "owner": "nix-community", 41 + "repo": "nixpkgs.lib", 42 + "rev": "db3f255737b94216eb71cce308e2912cf6bc2d7c", 43 + "type": "github" 44 + }, 45 + "original": { 46 + "owner": "nix-community", 47 + "repo": "nixpkgs.lib", 48 + "type": "github" 49 + } 50 + }, 51 + "root": { 52 + "inputs": { 53 + "flake-parts": "flake-parts", 54 + "nixpkgs": "nixpkgs" 55 + } 56 + } 57 + }, 58 + "root": "root", 59 + "version": 7 60 + }
+24
flake.nix
··· 1 + { 2 + inputs = { 3 + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; 4 + }; 5 + 6 + outputs = 7 + { nixpkgs, flake-parts, ... }@inputs: 8 + flake-parts.lib.mkFlake { inherit inputs; } { 9 + systems = [ "x86_64-linux" ]; 10 + 11 + perSystem = 12 + { system, ... }: 13 + let 14 + pkgs = import nixpkgs { inherit system; }; 15 + in 16 + { 17 + devShells.default = 18 + with pkgs; 19 + mkShell { 20 + buildInputs = [ typst typstPackages.fontawesome jujutsu ]; 21 + }; 22 + }; 23 + }; 24 + }