1
;; This is an operating system configuration generated
;; by the graphical installer.
;;
;; Once installation is complete, you can learn and modify
;; this file to tweak the system configuration, and pass it
;; to the 'guix system reconfigure' command to effect your
;; changes.
;; Indicate which modules to import to access the variables
;; used in this configuration.
(use-modules (gnu) (nongnu packages linux)
(gnu packages nushell)
(nongnu system linux-initrd))
(use-service-modules cups desktop networking ssh xorg)
(operating-system
(kernel linux-lts)
(initrd microcode-initrd)
(firmware (list linux-firmware))
(locale "en_US.utf8")
(timezone "Asia/Yerevan")
(keyboard-layout (keyboard-layout "us"))
(host-name "mrspen")
;; The list of user accounts ('root' is implicit).
(users (cons* (user-account
(name "kosto")
(comment "Kosto")
(group "users")
(home-directory "/home/kosto")
(supplementary-groups '("wheel" "netdev" "audio" "video")))
%base-user-accounts))
;; Below is the list of system services. To search for available
;; services, run 'guix system search KEYWORD' in a terminal.
(services
(append (list (service plasma-desktop-service-type)
(set-xorg-configuration
(xorg-configuration (keyboard-layout keyboard-layout))))
;; This is the default list of services we
;; are appending to.
%desktop-services))
(packages (cons nushell %base-packages))
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout keyboard-layout)))
(mapped-devices
(list (mapped-device
(source "main")
(target "main-root")
(type lvm-device-mapping))))
;; The list of file systems that get "mounted". The unique
;; file system identifiers there ("UUIDs") can be obtained
;; by running 'blkid' in a terminal.
(file-systems (cons* (file-system
(mount-point "/")
(device (file-system-label "root"))
(type "ext4")
(dependencies mapped-devices))
(file-system
(mount-point "/boot/efi")
(device (file-system-label "efi"))
(type "vfat"))
%base-file-systems))
(swap-devices
(list
(swap-space
(target (file-system-label "swap")))))
)
For immediate assistance, please email our customer support: [email protected]