diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-02-16 09:46:39 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2023-02-16 09:46:39 +0100 |
commit | 6807b68748a7eb62db8398a5de9676a05d88ae13 (patch) | |
tree | 8c9b46ca54824d33cf88123b03c5a496598d5e45 /aisaka.org | |
parent | cd1d455f126fd2fcf6c0f1a1afd9275d0c503656 (diff) |
Enable export-all in git-daemon service and declare local package channel
Diffstat (limited to 'aisaka.org')
-rw-r--r-- | aisaka.org | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -25,8 +25,6 @@ https://guix.gnu.org/en/manual/en/html_node/Invoking-guix_002ddaemon.html https://guix.gnu.org/en/manual/en/html_node/System-Configuration.html #+begin_src scheme :noweb-ref system-dump :tangle system-configuration.scm - (add-to-load-path "./services") - (define-module (aisaka-system-configuration) #:use-module (gnu) #:use-module (gnu packages cups) @@ -101,7 +99,9 @@ https://guix.gnu.org/en/manual/en/html_node/Services.html cups-filters epson-inkjet-printer-escpr)) (web-interface? #t))) - (service git-daemon-service-type) + (service git-daemon-service-type + (git-daemon-configuration + (export-all? #t))) (service gnome-desktop-service-type) (service tor-service-type @@ -136,8 +136,6 @@ https://guix.gnu.org/en/manual/en/html_node/Base-Services.html https://guix.gnu.org/en/manual/devel/en/html_node/Home-Configuration.html #+begin_src scheme :noweb-ref home-dump :tangle home-configuration.scm - (add-to-load-path "./services") - (define-module (aisaka-home-configuration) #:use-module (gnu home) #:use-module (gnu home services) |