diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-24 23:34:55 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-24 23:51:24 +0200 |
commit | 71eb5fc77d44d63e072799a5e628de6fee479807 (patch) | |
tree | 58db346f33446f0fa88d3f6c9518c5005b74c971 /systems/mcdowell.scm | |
parent | 68ebf58474851f6c327997f2236c2689782d71d1 (diff) |
feat!(machine): install microcode from nonguix in portable-bios
Diffstat (limited to 'systems/mcdowell.scm')
-rw-r--r-- | systems/mcdowell.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm index 31c1a90..3853d17 100644 --- a/systems/mcdowell.scm +++ b/systems/mcdowell.scm @@ -1,7 +1,8 @@ (define-module (systems mcdowell) #:use-module (machines portable-bios) ; bootloader-configuration* - ; kernel* ; file-systems* + ; initrd* + ; kernel* #:use-module (suweren system) ; %suweren-operating-system #:use-module (users marekpasnikowski) ; marekpasnikowski-account ) @@ -18,6 +19,7 @@ (define operating-system* (%suweren-operating-system kernel* bootloader-configuration* + initrd* host-name* (file-systems* host-name*) users*)) |