summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marekpasnikowski@protonmail.com>2023-02-16 09:46:39 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2023-02-16 09:46:39 +0100
commit6807b68748a7eb62db8398a5de9676a05d88ae13 (patch)
tree8c9b46ca54824d33cf88123b03c5a496598d5e45
parentcd1d455f126fd2fcf6c0f1a1afd9275d0c503656 (diff)
Enable export-all in git-daemon service and declare local package channel
-rw-r--r--aisaka.org8
-rw-r--r--channels.scm5
-rw-r--r--home-configuration.scm2
-rw-r--r--system-configuration.scm6
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