FIX use correct keys for workstation
This commit is contained in:
parent
a9b673ea57
commit
04afb914a2
|
@ -7,9 +7,19 @@ let cryptdir =
|
|||
"~/.crypt"
|
||||
{{- end }}
|
||||
|
||||
let sshKey = "ssh"
|
||||
let sshKey =
|
||||
{{ if eq .features.rofi_alias "workstation" -}}
|
||||
"ssh workstation"
|
||||
{{- else -}}
|
||||
"ssh"
|
||||
{{- end }}
|
||||
|
||||
let gpgKey = "gpg"
|
||||
let gpgKey =
|
||||
{{ if eq .features.rofi_alias "workstation" -}}
|
||||
"gpg workstation"
|
||||
{{- else -}}
|
||||
"gpg"
|
||||
{{- end }}
|
||||
|
||||
let bwConfig =
|
||||
\(k : Text) ->
|
||||
|
|
Loading…
Reference in New Issue