summaryrefslogtreecommitdiff
path: root/suweren
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-21 20:45:46 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-21 22:33:00 +0200
commit57759415caecdbd7378ee5555e4336daec6fb579 (patch)
treec5227d46d4bd51e554792b05d3754c7b07ae771c /suweren
parent43bb40a5f78fb4ed4052ce4e8e1f2a97eed30227 (diff)
feature: implement the minimal generic system configuration
Diffstat (limited to 'suweren')
-rw-r--r--suweren/system.scm11
1 files changed, 11 insertions, 0 deletions
diff --git a/suweren/system.scm b/suweren/system.scm
new file mode 100644
index 0000000..5eabc3c
--- /dev/null
+++ b/suweren/system.scm
@@ -0,0 +1,11 @@
+(define-module (suweren system)
+ #:use-module (gnu system) ; operating-system
+ )
+
+;; string -> record operating-system
+(define-public (%suweren-operating-system bootloader-configuration*
+ host-name*
+ file-systems*)
+ (operating-system (bootloader bootloader-configuration*)
+ (host-name host-name*)
+ (file-systems file-systems*)))