summaryrefslogtreecommitdiff
path: root/deployment
diff options
context:
space:
mode:
Diffstat (limited to 'deployment')
-rw-r--r--deployment/system.scm2
-rw-r--r--deployment/system/aisaka.scm6
2 files changed, 6 insertions, 2 deletions
diff --git a/deployment/system.scm b/deployment/system.scm
index 4227253..95736c3 100644
--- a/deployment/system.scm
+++ b/deployment/system.scm
@@ -90,7 +90,7 @@
(kernel-loadable-modules (list))
(kernel-arguments gnu:system:%default-kernel-arguments)
(hurd #f)
- (bootloader sovereign:devices:amd64:custom-bootloader-configuration)
+ (bootloader (sovereign:devices:amd64:custom-bootloader-configuration deployment:system:aisaka:bootloader-configuration-targets-aisaka))
(label (sovereign:systems:operating-system-label* deployment:system:aisaka:host-name-aisaka
gnu:system:this-operating-system))
(keyboard-layout deployment:system:aisaka:system-keyboard-layout)
diff --git a/deployment/system/aisaka.scm b/deployment/system/aisaka.scm
index 4ecd374..d5e368d 100644
--- a/deployment/system/aisaka.scm
+++ b/deployment/system/aisaka.scm
@@ -19,7 +19,8 @@
;;; If not, see <https://www.gnu.org/licenses/>.
(define-module (deployment system aisaka)
- #:export (host-name-aisaka)
+ #:export (bootloader-configuration-targets-aisaka
+ host-name-aisaka)
#:use-module (guix gexp)
#:use-module ((deployment gexp)
#:prefix deployment:gexp:)
@@ -322,4 +323,7 @@
(define host-name-aisaka "aisaka")
+(define bootloader-configuration-targets-aisaka
+ (list "/dev/nvme0n1"))
+
;;; EOF