commit 86972fc3e5c7156e0ba50109bfdc6525b6215a92 Author: Georges Dupéron <georges.duperon@gmail.com> Date: Tue, 4 Sep 2018 09:20:24 +0200 Initial commit: smallest os description that I could build. Diffstat:
| A | Makefile | | | 2 | ++ |
| A | config.scm | | | 15 | +++++++++++++++ |
2 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,2 @@ +all: + "$$(guix system vm config.scm)" diff --git a/config.scm b/config.scm @@ -0,0 +1,15 @@ +(use-modules (gnu)) + +(operating-system + (bootloader + (bootloader-configuration + (bootloader grub-bootloader) + (target "/dev/sdX"))) + (host-name "hostname") + (file-systems + (cons (file-system + (device "/dev/sdX") + (mount-point "/") + (type "ext4")) + %base-file-systems)) + (timezone "GMT"))