diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-22 12:07:30 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-22 12:07:30 +0200 |
commit | 20fc12b09f0bc3ccf044bba9e021f8d8b7ec66fd (patch) | |
tree | 9978c2ee0d4bc1a8ad5e72837978242467d149e0 /systems/mcdowell.scm | |
parent | 2550469d6337b218d2f79941a7d68307aa29a70c (diff) |
feature: implement the minimal mcdowell system configuration
Diffstat (limited to 'systems/mcdowell.scm')
-rw-r--r-- | systems/mcdowell.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm new file mode 100644 index 0000000..4e97866 --- /dev/null +++ b/systems/mcdowell.scm @@ -0,0 +1,9 @@ +(define-module (systems mcdowell) + #:use-module (machines portable-bios) ; portable-operating-system + ) + +;; string +(define host-name* + "mcdowell") + +(operating-system* host-name*) |