remove secrets from chezmoi (now managed with sops-nix)

This commit is contained in:
Tyler Starr 2023-11-19 23:48:04 -08:00
parent 4b5a21c946
commit 3152ed7f62
3 changed files with 0 additions and 41 deletions

View File

@ -1,2 +0,0 @@
secret:
command: "rbw-get"

View File

@ -1,20 +0,0 @@
[general]
status_path = "~/.vdirsyncer/status/"
[pair personal_calendar]
a = "personal_calendar_local"
b = "personal_calendar_remote"
collections = ["from a", "from b"]
metadata = ["color"]
[storage personal_calendar_local]
type = "filesystem"
path = "~/.calendars/"
fileext = ".ics"
[storage personal_calendar_remote]
type = "caldav"
url = "{{ (secret "Vdirsyncer - Calendar" "url") }}"
username = "{{ (secret "Vdirsyncer - Calendar" "Username") }}"
password = "{{ (secret "Vdirsyncer - Calendar" "Password") }}"

View File

@ -1,19 +0,0 @@
[general]
status_path = "~/.vdirsyncer/status/"
[pair personal_contacts]
a = "personal_contacts_local"
b = "personal_contacts_remote"
collections = ["from a", "from b"]
[storage personal_contacts_local]
type = "filesystem"
path = "~/.contacts/"
fileext = ".vcf"
[storage personal_contacts_remote]
type = "carddav"
url = "{{ (secret "Vdirsyncer - Contacts" "url") }}"
username = "{{ (secret "Vdirsyncer - Contacts" "Username") }}"
password = "{{ (secret "Vdirsyncer - Contacts" "Password") }}"