aboutsummaryrefslogtreecommitdiff
path: root/.guix/guix-na
diff options
context:
space:
mode:
Diffstat (limited to '.guix/guix-na')
-rw-r--r--.guix/guix-na/config/balg02.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/.guix/guix-na/config/balg02.scm b/.guix/guix-na/config/balg02.scm
index e41333a..b52f4be 100644
--- a/.guix/guix-na/config/balg02.scm
+++ b/.guix/guix-na/config/balg02.scm
@@ -27,11 +27,11 @@
#:use-module (gnu services networking)
#:use-module (gnu services ssh)
#:use-module (gnu services web)
- #:export (%system))
+ #:export (balg02 %system))
(define %automation-user "auto")
-(define %system
+(define (balg02 disk)
(operating-system
(host-name "balg02")
(timezone "US/Central")
@@ -44,7 +44,7 @@
(terminal-outputs '(console serial_1))
(serial-unit 1)
(serial-speed 115200)
- (targets '("/dev/sda"))))
+ (targets `(,disk))))
(file-systems (append
(list (file-system
@@ -117,3 +117,5 @@
(name-servers '("216.37.64.2" "216.37.64.3")))))
(service ntp-service-type))
%base-services))))
+
+(define %system (balg02 "/dev/sda"))