my page ollie.earth
0
fork

Configure Feed

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

at main 38 lines 715 B view raw
1{ 2 description = "page dev env"; 3 4 inputs = { 5 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; 6 utils.url = "github:numtide/flake-utils"; 7 }; 8 9 outputs = 10 { 11 self, 12 nixpkgs, 13 utils, 14 }: 15 utils.lib.eachDefaultSystem ( 16 system: 17 let 18 pkgs = import nixpkgs { inherit system; }; 19 in 20 { 21 devShells.default = pkgs.mkShell { 22 buildInputs = with pkgs; [ 23 gleam 24 erlang_28 25 rebar3 26 just 27 inotify-tools 28 ]; 29 30 shellHook = '' 31 echo "page dev env loaded" 32 just --list 33 echo "Use just to run them." 34 ''; 35 }; 36 } 37 ); 38}