Skip to content

Instantly share code, notes, and snippets.

@jakiki6
Created September 23, 2024 22:08
Show Gist options
  • Save jakiki6/d564e284dbe3cc9e54faa971ddc96c2d to your computer and use it in GitHub Desktop.
Save jakiki6/d564e284dbe3cc9e54faa971ddc96c2d to your computer and use it in GitHub Desktop.
minimal guix operating system configuration
(use-modules (gnu bootloader))
(use-modules (gnu bootloader grub))
(use-modules (gnu system file-systems))
(operating-system
(bootloader
(bootloader-configuration
(bootloader grub-bootloader)
(targets (list "/dev/sda"))))
(host-name "")
(file-systems
(cons* (file-system
(mount-point "/")
(device "/dev/sda")
(type "btrfs"))
%base-file-systems)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment