Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature. gitlab.com/andreijiroh-dev/dotfiles
linux dotfiles
2
fork

Configure Feed

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

Update PATH on .profile

Also in this commit:
* Updated the default PGP keyids to export for the private part. Also
use long keyids to avoid possible confusion on GPG side.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>

+6 -6
+2 -2
.profile
··· 7 7 fi 8 8 fi 9 9 10 - export PATH="/usr/local/bin${PATH:+:}$PATH" # ~vern specifics, might work on this soon. 10 + export PATH="/usr/local/bin${PATH:+:}$PATH" # ~vern specifics and more 11 11 mesg n 2> /dev/null || true 12 12 13 13 # then import the rest ··· 16 16 export POSIX_PROFILE_SOURCED=true 17 17 18 18 # how about detecting local configs 19 - if [ ! -f "$HOME/.config/localconfig.env" ]; then 19 + if [ -f "$HOME/.config/localconfig.env" ]; then 20 20 . "$HOME/.config/localconfig.env" 21 21 fi 22 22
+4 -4
bin/backup-pgp-keys
··· 2 2 3 3 # a script to generate backups for my GPG keys 4 4 5 - # literally all of active keys I use for different purposes 6 - # https://ajhalili2006.vern.cc/ 7 - DEFAULT_PRIVATE_KEYS="A30EBE40AD856D88 67BFC91B3DA12BE8 940047813E9D641C 120C218ED2291996 7067DB4C7768552F 7E4E0EF8B968A952" 8 - DEFAULT_PUBLIC_KEYS="A30EBE40AD856D88 67BFC91B3DA12BE8 940047813E9D641C 120C218ED2291996" 5 + # literally all of active keys I use for different purposes, including some 6 + # I maintain (such as Recap Time Squad's keys for support and security issues 7 + DEFAULT_PRIVATE_KEYS="0527234A430387EA5695D824A30EBE40AD856D88 4D5E631758CB9CC45941B1CE67BFC91B3DA12BE8 EA957E7086E934F8DB9CAD21940047813E9D641C 5D69E717C5BC95731C2AD8BD120C218ED2291996 2CFF8721393487AEEF2C38987067DB4C7768552F 18C97CF46F06176E7EC43BDC7E4E0EF8B968A952 51D2F9710A20AAE56DC9A9AB77D63E4A0C267204 11F7802B423286A5FCF40AF48AEB225605921F92" 8 + DEFAULT_PUBLIC_KEYS="0527234A430387EA5695D824A30EBE40AD856D88 4D5E631758CB9CC45941B1CE67BFC91B3DA12BE8 EA957E7086E934F8DB9CAD21940047813E9D641C 5D69E717C5BC95731C2AD8BD120C218ED2291996" 9 9 10 10 # allow anybody to automate this via envvars 11 11 PRIVATE_KEYS="${PRIVATE_KEYS:-"$DEFAULT_PRIVATE_KEYS"}"