Created
July 19, 2019 23:09
-
-
Save bhougland18/84ab10c25ca1b992350c034082e5b6a9 to your computer and use it in GitHub Desktop.
Guix config
This file contains hidden or 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. | |
(use-modules (gnu) | |
(nonfree packages linux) | |
(gnu packages)) | |
(use-service-modules | |
desktop mcron cups virtualization networking ssh xorg) | |
(use-package-modules shells) | |
(operating-system | |
(kernel linux-nonfree) | |
(firmware (append (list linux-firmware-nonfree) %base-firmware)) | |
(locale "en_US.utf8") | |
(timezone "America/Detroit") | |
(keyboard-layout | |
(keyboard-layout "us" "altgr-intl")) | |
(bootloader | |
(bootloader-configuration | |
(bootloader grub-bootloader) | |
(target "/dev/sda") | |
(keyboard-layout keyboard-layout))) | |
config.scm 1,1 Top | |
;; This is an operating system configuration generated | |
;; by the graphical installer. | |
(use-modules (gnu) | |
(nonfree packages linux) | |
(gnu packages)) | |
(use-service-modules | |
desktop mcron cups virtualization networking ssh xorg) | |
(use-package-modules shells) | |
(operating-system | |
(kernel linux-nonfree) | |
(firmware (append (list linux-firmware-nonfree) %base-firmware)) | |
(locale "en_US.utf8") | |
(timezone "America/Detroit") | |
(keyboard-layout | |
(keyboard-layout "us" "altgr-intl")) | |
(bootloader | |
(bootloader-configuration | |
(bootloader grub-bootloader) | |
(target "/dev/sda") | |
(keyboard-layout keyboard-layout))) | |
config.scm | |
'ext4)) | |
(type "ext4")) | |
%base-file-systems)) | |
(host-name "guix-ben") | |
;; for use in the shell command in the user's section | |
(users (cons* (user-account | |
(name "bhougland") | |
(comment "Bhougland") | |
(shell #~(string-append #$fish "/bin/fish")) | |
(group "users") | |
(home-directory "/home/bhougland") | |
(supplementary-groups | |
'("wheel" "netdev" "audio" "video"))) | |
%base-user-accounts)) | |
(packages | |
(append | |
(map specification->package | |
'( "i3-wm" | |
"curl" | |
"conky" | |
config.scm 35,1 51% | |
1,1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment