My Nix flake for both my desktop and homelab
at main 24 lines 308 B view raw
1{ pkgs, ... }: 2 3{ 4 environment.systemPackages = with pkgs; [ 5 deno 6 erlang_28 7 gleam 8 jq 9 nil 10 nixd 11 nodejs_24 12 pnpm 13 sqlite 14 twitch-cli 15 websocat 16 yarn 17 zed-editor 18 ]; 19 20 # Open port 3000 for local testing 21 networking.firewall.allowedTCPPorts = [ 22 3000 23 ]; 24}