From 463f4faaeea604b59c38e26c0e51aec66956a346 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Thu, 16 Feb 2023 09:46:39 +0100 Subject: Enable export-all in git-daemon service and declare local package channel --- aisaka.org | 8 +++----- channels.scm | 5 ++++- home-configuration.scm | 2 -- system-configuration.scm | 6 +++--- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/aisaka.org b/aisaka.org index f397c0c..b78c833 100644 --- a/aisaka.org +++ b/aisaka.org @@ -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) diff --git a/channels.scm b/channels.scm index c69b83a..5e0c603 100644 --- a/channels.scm +++ b/channels.scm @@ -5,4 +5,7 @@ (url "https://framagit.org/Jeko/guix-jeko-channel.git")) (channel (name 'org-fc-tn) (url "file:///home/marek/src/org-fc") - (branch "repository"))) + (branch "repository")) + (channel (name 'packages) + (url "file:///home/marek/src/packages") + (branch "master"))) diff --git a/home-configuration.scm b/home-configuration.scm index c3dee97..9770ac5 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -1,5 +1,3 @@ -(add-to-load-path "./services") - (define-module (aisaka-home-configuration) #:use-module (gnu home) #:use-module (gnu home services) diff --git a/system-configuration.scm b/system-configuration.scm index 0e29b0d..054dd25 100644 --- a/system-configuration.scm +++ b/system-configuration.scm @@ -1,5 +1,3 @@ -(add-to-load-path "./services") - (define-module (aisaka-system-configuration) #:use-module (gnu) #:use-module (gnu packages cups) @@ -72,7 +70,9 @@ 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 -- cgit v1.2.3