diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-07-23 23:16:58 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-07-23 23:16:58 +0200 |
commit | d79cd4552df19cee7eb3c3a72b5e70858bd879d2 (patch) | |
tree | c5731fb6df65e4db91def1daa0237cd63ce088ac /deployment/systems/akashi.scm | |
parent | 53811e4d2f2f0a72c212b859b549c579d9c9e202 (diff) |
[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.
Diffstat (limited to 'deployment/systems/akashi.scm')
-rw-r--r-- | deployment/systems/akashi.scm | 5 |
1 files changed, 3 insertions, 2 deletions
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) |