home: Fix typo in parcimonie configuration.
* gnu/home/services/gnupg.scm (<home-parcimonie-configuration>) [gnupg-aleady-torified?]: Rename to ‘gnupg-already-torified?’. Change-Id: I0687f67a5cef410b8b1d579c57b318b9d269e0d0
This commit is contained in:
parent
1fd5af6b6f
commit
0c9876a16a
@ -180,7 +180,7 @@ enabled, @command{gpg-agent} acts as a drop-in replacement for OpenSSH's
|
|||||||
(verbose?
|
(verbose?
|
||||||
(boolean #f)
|
(boolean #f)
|
||||||
"Provide extra output to the log file.")
|
"Provide extra output to the log file.")
|
||||||
(gnupg-aleady-torified?
|
(gnupg-already-torified?
|
||||||
(boolean #f)
|
(boolean #f)
|
||||||
"GnuPG is already configured to use tor and parcimonie won't attempt to use
|
"GnuPG is already configured to use tor and parcimonie won't attempt to use
|
||||||
tor directly.")
|
tor directly.")
|
||||||
@ -194,7 +194,7 @@ tor directly.")
|
|||||||
(define (home-parcimonie-shepherd-service config)
|
(define (home-parcimonie-shepherd-service config)
|
||||||
"Return a user service to run parcimonie."
|
"Return a user service to run parcimonie."
|
||||||
(match-record config <home-parcimonie-configuration>
|
(match-record config <home-parcimonie-configuration>
|
||||||
(parcimonie verbose? gnupg-aleady-torified?
|
(parcimonie verbose? gnupg-already-torified?
|
||||||
refresh-guix-keyrings? extra-content)
|
refresh-guix-keyrings? extra-content)
|
||||||
(let ((log-file #~(string-append %user-log-dir "/parcimonie.log")))
|
(let ((log-file #~(string-append %user-log-dir "/parcimonie.log")))
|
||||||
(list (shepherd-service
|
(list (shepherd-service
|
||||||
@ -208,7 +208,7 @@ tor directly.")
|
|||||||
#$@(if verbose?
|
#$@(if verbose?
|
||||||
'("--verbose")
|
'("--verbose")
|
||||||
'())
|
'())
|
||||||
#$@(if gnupg-aleady-torified?
|
#$@(if gnupg-already-torified?
|
||||||
'("--gnupg_already_torified")
|
'("--gnupg_already_torified")
|
||||||
'())
|
'())
|
||||||
#$@(if (not (string=? extra-content ""))
|
#$@(if (not (string=? extra-content ""))
|
||||||
|
Loading…
Reference in New Issue
Block a user