aboutsummaryrefslogtreecommitdiff
path: root/tw/system
diff options
context:
space:
mode:
authorTimo Wilken2024-03-27 17:03:29 -0500
committerTimo Wilken2024-03-27 17:03:29 -0500
commita56bdba05f21d75dc4b0fad74d3912c384d5c6c5 (patch)
treeb165d7518e01d651735e9d9acc47c1eaa3566493 /tw/system
parentb992616be8836b5675e50c944b7eea451074ef20 (diff)
Configure channels through guix-configuration
In recent versions, it seems Guix silently overwrites any custom /etc/guix/channels.scm file, so configure channels though Guix' configuration.
Diffstat (limited to 'tw/system')
-rw-r--r--tw/system/btl.scm2
-rw-r--r--tw/system/cern.scm2
-rw-r--r--tw/system/frm.scm2
-rw-r--r--tw/system/installer/nonfree.scm48
-rw-r--r--tw/system/lap.scm2
-rw-r--r--tw/system/vin.scm2
6 files changed, 27 insertions, 31 deletions
diff --git a/tw/system/btl.scm b/tw/system/btl.scm
index aa1de5a9..915c969a 100644
--- a/tw/system/btl.scm
+++ b/tw/system/btl.scm
@@ -140,7 +140,7 @@
(unattended-upgrade-configuration
(schedule "0 21 * * *") ; every night at 21:00, when the PC is turned on
(maximum-duration (* 40 60)) ; 40 minutes to allow for slow downloads
- (channels %system-channels)
+ (channels #~(@ (tw channels) %system-channels))
(operating-system-expression
#~(@ (tw system btl) %btl-system))
(services-to-restart
diff --git a/tw/system/cern.scm b/tw/system/cern.scm
index c7f01413..c46b2dc8 100644
--- a/tw/system/cern.scm
+++ b/tw/system/cern.scm
@@ -209,7 +209,7 @@
(unattended-upgrade-configuration
(schedule "0 22 * * *") ; every night at 22:00
(maximum-duration (* 40 60)) ; 40 minutes
- (channels %system-channels)
+ (channels #~(@ (tw channels) %system-channels))
(operating-system-expression
#~(@ (tw system cern) %cern-system))
(services-to-restart
diff --git a/tw/system/frm.scm b/tw/system/frm.scm
index 3303f461..5e9e7d55 100644
--- a/tw/system/frm.scm
+++ b/tw/system/frm.scm
@@ -151,7 +151,7 @@
(unattended-upgrade-configuration
(schedule "0 21 * * *") ; every night at 21:00, when the laptop is turned on
(maximum-duration (* 40 60)) ; 40 minutes to allow for slow downloads
- (channels %system-channels)
+ (channels #~(@ (tw channels) %system-channels))
(operating-system-expression
#~(@ (tw system frm) %frm-system))
(services-to-restart
diff --git a/tw/system/installer/nonfree.scm b/tw/system/installer/nonfree.scm
index 14dffccb..97755076 100644
--- a/tw/system/installer/nonfree.scm
+++ b/tw/system/installer/nonfree.scm
@@ -7,6 +7,7 @@
#:use-module (gnu services base)
#:use-module (gnu services ssh)
#:use-module (gnu system)
+ #:use-module (guix channels)
#:use-module (guix gexp)
#:use-module ((nongnu packages linux)
#:prefix nongnu:) ; don't interfere with (gnu packages linux)
@@ -14,7 +15,6 @@
#:select (installation-os-nonfree))
#:use-module ((nongnu system linux-initrd)
#:prefix nongnu:)
- #:use-module ((srfi srfi-26) #:select (cut))
#:use-module (tw channels)
#:use-module (tw packages firmware))
@@ -38,29 +38,25 @@
(operating-system-packages installation-os-nonfree)))
(services
- (cons*
- ;; Add this channel, so we can install nonfree packages directly.
- (extra-special-file "/etc/guix/channels.scm"
- (scheme-file "channels.scm" %system-channels))
+ (modify-services (append %system-channel-services ((@@ (gnu system install) %installation-services)))
+ ;; Set up an SSH server to facilitate remote installs.
+ (openssh-service-type
+ config =>
+ (openssh-configuration
+ (inherit config)
+ (port-number 22)
+ (%auto-start? #t)
+ (permit-root-login #t)
+ ;; The root account is passwordless, so make sure
+ ;; a password is set before allowing logins.
+ (allow-empty-passwords? #f)
+ (password-authentication? #f)
+ (authorized-keys
+ `(("root" ,(local-file "../files/timo.pub"))))))
- ;; Use nonguix' substitute server.
- (simple-service 'nonguix guix-service-type
- (guix-extension
- (authorized-keys (list %nonguix-signing-key))
- (substitute-urls '("https://substitutes.nonguix.org"))))
-
- (modify-services ((@@ (gnu system install) %installation-services))
- ;; Set up an SSH server to facilitate remote installs.
- (openssh-service-type
- config =>
- (openssh-configuration
- (inherit config)
- (port-number 22)
- (%auto-start? #t)
- (permit-root-login #t)
- ;; The root account is passwordless, so make sure
- ;; a password is set before allowing logins.
- (allow-empty-passwords? #f)
- (password-authentication? #f)
- (authorized-keys
- `(("root" ,(local-file "../files/timo.pub"))))))))))
+ ;; Add this channel, so we can install nonfree packages directly.
+ (guix-service-type
+ config =>
+ (guix-configuration
+ (inherit config)
+ (channels %system-channels))))))
diff --git a/tw/system/lap.scm b/tw/system/lap.scm
index 89a0014c..a8f3fad9 100644
--- a/tw/system/lap.scm
+++ b/tw/system/lap.scm
@@ -207,7 +207,7 @@
(unattended-upgrade-configuration
(schedule "0 21 * * *") ; every night at 21:00, when the laptop is turned on
(maximum-duration (* 40 60)) ; 40 minutes to allow for slow downloads
- (channels %system-channels)
+ (channels #~(@ (tw channels) %system-channels))
(operating-system-expression
#~(@ (tw system lap) %lap-system))
(services-to-restart
diff --git a/tw/system/vin.scm b/tw/system/vin.scm
index 6a72026d..02a4bbcb 100644
--- a/tw/system/vin.scm
+++ b/tw/system/vin.scm
@@ -263,7 +263,7 @@
(services-to-restart
'(mcron wireguard-wg0 syncthing-timo postgresql hledger-dashboard
prometheus-node-exporter restic-server))
- (channels %system-channels)
+ (channels #~(@ (tw channels) %system-channels))
(operating-system-expression
#~(@ (tw system vin) %vin-system))))