Created
November 5, 2022 13:01
-
-
Save andreivasiliu/ad629e5446a291f735144fe733352ecf to your computer and use it in GitHub Desktop.
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
;; This is an operating system configuration generated | |
;; by the graphical installer. | |
#!curly-infix | |
{use-modules(gnu())} | |
{use-service-modules(desktop networking ssh xorg)} | |
{operating-system( | |
locale("en_US.utf8") | |
timezone("Europe/Bucharest") | |
keyboard-layout( | |
keyboard-layout("us" "altgr-intl") | |
) | |
host-name("whyte-guix") | |
users(cons*( | |
user-account( | |
name("whyte") | |
comment("Whyte") | |
group("users") | |
home-directory("/home/whyte") | |
supplementary-groups( | |
'("wheel" "netdev" "audio" "video") | |
) | |
) | |
%base-user-accounts | |
)) | |
packages(cons( | |
specifications->packages(list( | |
"openbox" | |
;; "gnome" | |
"nss-certs" | |
"emacs" | |
"curl" | |
) | |
%base-packages | |
)) | |
services(cons*( | |
service(openssh-service-type) | |
set-xorg-configuration(xorg-configuration( | |
keyboard-layout(keyboard-layout) | |
)) | |
%desktop-services | |
) | |
bootloader( | |
bootloader-configuration( | |
bootloader(grub-bootloader) | |
target("/dev/sda") | |
keyboard-layout(keyboard-layout) | |
) | |
) | |
swap-devices(list( | |
uuid("9e276012-2da1-4d0b-9687-e7d43e79fa70") | |
)) | |
file-systems(cons*( | |
file-system( | |
mount-point("/") | |
device(uuid("429fe386-3abe-48b3-b5c3-e329b7ed6787" 'ext4)) | |
type("ext4") | |
) | |
%base-file-systems | |
)) | |
)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment