diff options
author | jman <srht@city17.xyz> | 2022-12-30 01:14:26 +0100 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-01-03 16:29:02 -0500 |
commit | 4dab99ac9f003b116c4382e172a4e772742d221a (patch) | |
tree | 2cc1fe63c5a0edcef9823ff7ff5b403c286bef4b /gnu/home/services.scm | |
parent | ec365d19593c428d42c0859eb6d5e1377e8dc89e (diff) |
guix: Fix typos.
* gnu/home/services.scm (home-files-service-type): Fix typo.
(home-xdg-configuration-files-service-type): Likewise.
(home-xdg-data-files-service-type): Likewise.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/home/services.scm')
-rw-r--r-- | gnu/home/services.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/home/services.scm b/gnu/home/services.scm index 99035686f1..e154f5c443 100644 --- a/gnu/home/services.scm +++ b/gnu/home/services.scm @@ -313,7 +313,7 @@ directory containing FILES." (extend append) (default-value '()) (description "Files that will be put in -@file{~~/.guix-home/files}, and further processed during activation."))) +@file{~/.guix-home/files}, and further processed during activation."))) (define xdg-configuration-files-directory ".config") @@ -334,7 +334,7 @@ directory containing FILES." (extend append) (default-value '()) (description "Files that will be put in -@file{~~/.guix-home/files/.config}, and further processed during activation."))) +@file{~/.guix-home/files/.config}, and further processed during activation."))) (define xdg-data-files-directory ".local/share") @@ -355,7 +355,7 @@ directory containing FILES." (extend append) (default-value '()) (description "Files that will be put in -@file{~~/.guix-home/files/.local/share}, and further processed during +@file{~/.guix-home/files/.local/share}, and further processed during activation."))) |