Select the types of activity you want to include in your feed.
Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature.
gitlab.com/andreijiroh-dev/dotfiles
···77 fi
88fi
991010-export PATH="/usr/local/bin${PATH:+:}$PATH" # ~vern specifics, might work on this soon.
1010+export PATH="/usr/local/bin${PATH:+:}$PATH" # ~vern specifics and more
1111mesg n 2> /dev/null || true
12121313# then import the rest
···1616export POSIX_PROFILE_SOURCED=true
17171818# how about detecting local configs
1919-if [ ! -f "$HOME/.config/localconfig.env" ]; then
1919+if [ -f "$HOME/.config/localconfig.env" ]; then
2020 . "$HOME/.config/localconfig.env"
2121fi
2222
+4-4
bin/backup-pgp-keys
···2233# a script to generate backups for my GPG keys
4455-# literally all of active keys I use for different purposes
66-# https://ajhalili2006.vern.cc/
77-DEFAULT_PRIVATE_KEYS="A30EBE40AD856D88 67BFC91B3DA12BE8 940047813E9D641C 120C218ED2291996 7067DB4C7768552F 7E4E0EF8B968A952"
88-DEFAULT_PUBLIC_KEYS="A30EBE40AD856D88 67BFC91B3DA12BE8 940047813E9D641C 120C218ED2291996"
55+# literally all of active keys I use for different purposes, including some
66+# I maintain (such as Recap Time Squad's keys for support and security issues
77+DEFAULT_PRIVATE_KEYS="0527234A430387EA5695D824A30EBE40AD856D88 4D5E631758CB9CC45941B1CE67BFC91B3DA12BE8 EA957E7086E934F8DB9CAD21940047813E9D641C 5D69E717C5BC95731C2AD8BD120C218ED2291996 2CFF8721393487AEEF2C38987067DB4C7768552F 18C97CF46F06176E7EC43BDC7E4E0EF8B968A952 51D2F9710A20AAE56DC9A9AB77D63E4A0C267204 11F7802B423286A5FCF40AF48AEB225605921F92"
88+DEFAULT_PUBLIC_KEYS="0527234A430387EA5695D824A30EBE40AD856D88 4D5E631758CB9CC45941B1CE67BFC91B3DA12BE8 EA957E7086E934F8DB9CAD21940047813E9D641C 5D69E717C5BC95731C2AD8BD120C218ED2291996"
991010# allow anybody to automate this via envvars
1111PRIVATE_KEYS="${PRIVATE_KEYS:-"$DEFAULT_PRIVATE_KEYS"}"