diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-03-15 17:48:11 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-03-15 17:48:11 +0100 |
commit | 27935626d7f24149663e9a41a91d83648c454932 (patch) | |
tree | 38a5187cde441ebda97a1cb6fb2d0d0038bf4c75 /deployment/systems/mcdowell.scm | |
parent | 8abb017fb9244652729e7a78afa8ff23be176e81 (diff) |
systems: use the nonguix definition of initrd
The indirect bindings force the Sovereign channel to unnecessarily depend on Nonguix.
Diffstat (limited to 'deployment/systems/mcdowell.scm')
-rw-r--r-- | deployment/systems/mcdowell.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/deployment/systems/mcdowell.scm b/deployment/systems/mcdowell.scm index bb16c15..1dafb27 100644 --- a/deployment/systems/mcdowell.scm +++ b/deployment/systems/mcdowell.scm @@ -9,6 +9,7 @@ #:use-module ((gnu system linux-initrd) #:prefix gnu:system:linux-initrd:) #:use-module ((gnu system shadow) #:prefix gnu:system:shadow:) #:use-module ((nongnu packages linux) #:prefix nongnu:packages:linux:) + #:use-module ((nongnu system linux-initrd) #:prefix nongnu:system:linux-initrd:) #:use-module ((sovereign devices) #:prefix sovereign:devices:) #:use-module ((sovereign devices amd64) #:prefix sovereign:devices:amd64:) #:use-module ((sovereign packages protonmail) #:prefix sovereign:packages:protonmail:) @@ -63,7 +64,7 @@ (kernel nongnu:packages:linux:linux) (bootloader l-bootloader) (keyboard-layout sovereign:devices:pl-keyboard-layout) - (initrd sovereign:devices:amd64:initrd) + (initrd nongnu:system:linux-initrd:microcode-initrd) (initrd-modules l-initrd-modules) (firmware l-firmware) (host-name system-name) |