From d79cd4552df19cee7eb3c3a72b5e70858bd879d2 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Wed, 23 Jul 2025 23:16:58 +0200 Subject: [3] akashi: use %base-file-systems directly This replacement is part of a process to decomission Deployment channel. --- The ultimate goal is to move useful code from Deployment channel to either Sovereign or Deployment channels. Everything else will be deleted and ultimately will be removed from network. --- The replaced reference is a useless indirection. --- The direct object from upstream Guix channel is used instead. --- This is the last variable from (suweren system) module gone. --- deployment/systems/akashi.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'deployment/systems') diff --git a/deployment/systems/akashi.scm b/deployment/systems/akashi.scm index 8a35a43..acf2e01 100644 --- a/deployment/systems/akashi.scm +++ b/deployment/systems/akashi.scm @@ -5,6 +5,7 @@ #:use-module ((gnu packages linux) #:prefix gnu:packages:linux:) #:use-module ((gnu services guix) #:prefix gnu:services:guix:) #:use-module ((gnu system) #:prefix gnu:system:) + #:use-module ((gnu system file-systems) #:prefix gnu:system:file-systems:) #:use-module ((machines thinkpad-x200) #:prefix machines:thinkpad-x200:) #:use-module ((sovereign systems) #:prefix sovereign:systems:) #:use-module (users id1000)) @@ -22,8 +23,8 @@ (define (file-systems) (use-modules (suweren system)) - (append %suweren-file-systems - (list root-partition))) + (cons* root-partition + gnu:system:file-systems:%base-file-systems)) (define keyboard-layout* ((@ (gnu system keyboard) keyboard-layout) -- cgit v1.2.3