/user-environment-demo

a demo repository to show how to share bashrc extensions, environment variables and secrets like ssh keys and config files between multiple workstation using git and sops

Primary LanguageShellGNU General Public License v3.0GPL-3.0

user-environment-demo

This a demo showcase repository to describe how to share bashrc extensions, environment variables and secrets like ssh keys and config files between multiple workstation using git and sops.

GPG Key Generation

gpg --default-new-key-algo rsa4096 --gen-key

Include Into Userspace

export BASHRC_ADDITIONS_INIT="/PATH_TO_GITREPO/user-environment-demo/bashrc_additions/init.sh"
load_bashrc_additions() {
	source "$BASHRC_ADDITIONS_INIT"
}
load_bashrc_additions()