Created
September 23, 2024 22:08
-
-
Save jakiki6/d564e284dbe3cc9e54faa971ddc96c2d to your computer and use it in GitHub Desktop.
minimal guix operating system configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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