offline-first, p2p synced, atproto enabled, feed reader
0
fork

Configure Feed

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

planning

rebuild again

+22 -4
+6 -3
.envrc
··· 1 - #!/usr/bin/env bash 1 + # shellcheck shell=bash 2 2 3 3 export DIRENV_WARN_TIMEOUT=20s 4 4 eval "$(devenv direnvrc)" 5 5 6 - # To silence all output, use `--quiet`. 7 - # Example usage: use devenv --quiet --impure --option services.postgres.enable:bool true 6 + source_url \ 7 + "https://github.com/tmatilai/direnv-1password/raw/v1.0.1/1password.sh" \ 8 + "sha256-4dmKkmlPBNXimznxeehplDfiV+CvJiIzg7H1Pik4oqY=" 9 + 8 10 use devenv --quiet 11 + dotenv
+9
.gitignore
··· 1 + node_modules 2 + 1 3 .direnv 2 4 .devenv/ 3 5 .devenv.flake.nix 4 6 devenv.local.nix 5 7 devenv.local.yaml 8 + 9 + *.db 10 + *.db-shm 11 + *.db-wal 12 + 13 + tmp* 14 + .env
+7 -1
devenv.nix
··· 1 1 { pkgs, lib, config, inputs, ... }: 2 2 3 3 { 4 + dotenv.enable = true; 5 + 6 + languages.javascript.enable = true; 4 7 languages.javascript = { 5 - enable = true; 6 8 npm.enable = true; 7 9 }; 10 + 11 + packages = [ 12 + pkgs.audiowaveform 13 + ]; 8 14 }