aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinstall5
-rw-r--r--provisioning/apt_essential1
-rw-r--r--provisioning/brew_essential1
-rw-r--r--provisioning/dnf_essential1
-rw-r--r--provisioning/pacman_essential1
-rwxr-xr-xsensitive2
6 files changed, 4 insertions, 7 deletions
diff --git a/install b/install
index 40a2c87..e26e681 100755
--- a/install
+++ b/install
@@ -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
diff --git a/sensitive b/sensitive
index 8a08c79..a6a839e 100755
--- a/sensitive
+++ b/sensitive
@@ -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