diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-21 20:45:46 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-21 22:33:00 +0200 |
commit | 57759415caecdbd7378ee5555e4336daec6fb579 (patch) | |
tree | c5227d46d4bd51e554792b05d3754c7b07ae771c | |
parent | 43bb40a5f78fb4ed4052ce4e8e1f2a97eed30227 (diff) |
feature: implement the minimal generic system configuration
-rw-r--r-- | suweren/system.scm | 11 |
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*))) |