diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2024-08-18 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2024-08-18 02:00:00 +0200 |
commit | 0c9876a16a7ad636675a0a05b4234e5b4826dd5e (patch) | |
tree | a448667207d3b59d46c989a98f8c3ff9c33f25a8 /gnu/home | |
parent | 1fd5af6b6ffe87281bc61385ec001f1f4fa92222 (diff) | |
download | guix-0c9876a16a7ad636675a0a05b4234e5b4826dd5e.tar guix-0c9876a16a7ad636675a0a05b4234e5b4826dd5e.tar.gz |
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
Diffstat (limited to 'gnu/home')
-rw-r--r-- | gnu/home/services/gnupg.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/home/services/gnupg.scm b/gnu/home/services/gnupg.scm index 1bd1deae5c..7fc99f793a 100644 --- a/gnu/home/services/gnupg.scm +++ b/gnu/home/services/gnupg.scm @@ -180,7 +180,7 @@ enabled, @command{gpg-agent} acts as a drop-in replacement for OpenSSH's (verbose? (boolean #f) "Provide extra output to the log file.") - (gnupg-aleady-torified? + (gnupg-already-torified? (boolean #f) "GnuPG is already configured to use tor and parcimonie won't attempt to use tor directly.") @@ -194,7 +194,7 @@ tor directly.") (define (home-parcimonie-shepherd-service config) "Return a user service to run parcimonie." (match-record config <home-parcimonie-configuration> - (parcimonie verbose? gnupg-aleady-torified? + (parcimonie verbose? gnupg-already-torified? refresh-guix-keyrings? extra-content) (let ((log-file #~(string-append %user-log-dir "/parcimonie.log"))) (list (shepherd-service @@ -208,7 +208,7 @@ tor directly.") #$@(if verbose? '("--verbose") '()) - #$@(if gnupg-aleady-torified? + #$@(if gnupg-already-torified? '("--gnupg_already_torified") '()) #$@(if (not (string=? extra-content "")) |