diff options
| -rwxr-xr-x | install | 5 | ||||
| -rw-r--r-- | provisioning/apt_essential | 1 | ||||
| -rw-r--r-- | provisioning/brew_essential | 1 | ||||
| -rw-r--r-- | provisioning/dnf_essential | 1 | ||||
| -rw-r--r-- | provisioning/pacman_essential | 1 | ||||
| -rwxr-xr-x | sensitive | 2 |
6 files changed, 4 insertions, 7 deletions
@@ -83,7 +83,8 @@ touch ~/.tool-versions echo "Setting up terminfo" tic xterm-256color-italic.terminfo -echo "Clone pass" -git clone git@git.unlimited.pizza:rbdr/pass ~/.password-store +echo "Cloning password store" +mkdir -p ~/.passage +git clone git@git.r.bdr.sh:rbdr/pass ~/.passage/store echo "Sensitive files have not been decrypted. Run ./sensitive <identity.txt> to decrypt." diff --git a/provisioning/apt_essential b/provisioning/apt_essential index c411818..fbaf36f 100644 --- a/provisioning/apt_essential +++ b/provisioning/apt_essential @@ -6,7 +6,6 @@ fd-find fzf gpg htop -pass ripgrep rsync tmux diff --git a/provisioning/brew_essential b/provisioning/brew_essential index a39643b..3b951b1 100644 --- a/provisioning/brew_essential +++ b/provisioning/brew_essential @@ -12,7 +12,6 @@ git-delta gnupg htop neovim -pass pinentry-mac ripgrep rsync diff --git a/provisioning/dnf_essential b/provisioning/dnf_essential index a8d9bd3..7669695 100644 --- a/provisioning/dnf_essential +++ b/provisioning/dnf_essential @@ -10,7 +10,6 @@ git-delta gnupg2 go htop -pass ripgrep rsync tmux diff --git a/provisioning/pacman_essential b/provisioning/pacman_essential index 7b1ed09..a639a5a 100644 --- a/provisioning/pacman_essential +++ b/provisioning/pacman_essential @@ -9,7 +9,6 @@ git-delta gnupg htop inetutils -pass ripgrep rsync tmux @@ -10,6 +10,6 @@ if [[ "$1" == "update" ]]; then else echo "Decrypting" for sensitive_file in $sensitive_files; do - age -d -i $1 -o $sensitive_file $sensitive_file.age + age -d -i ~/.age/identities -o $sensitive_file $sensitive_file.age done fi |