diff options
| author | Amin Bandali <bandali@gnu.org> | 2019-08-04 17:11:26 -0400 | 
|---|---|---|
| committer | Amin Bandali <bandali@gnu.org> | 2019-08-04 17:11:26 -0400 | 
| commit | 2fd6955df8df8e17941d64e8361b3bbb8cc6dd6e (patch) | |
| tree | 4125fcc6f3a70f365d935f2d2656817cecc28f4b /.config/guix/system | |
| parent | 4d5a11b302efecfc745f5e22dc4b9cf394e339c2 (diff) | |
| download | configs-2fd6955df8df8e17941d64e8361b3bbb8cc6dd6e.tar.gz configs-2fd6955df8df8e17941d64e8361b3bbb8cc6dd6e.tar.xz configs-2fd6955df8df8e17941d64e8361b3bbb8cc6dd6e.zip | |
guix: add home-manifest and chaman's config
Diffstat (limited to '.config/guix/system')
| -rw-r--r-- | .config/guix/system/chaman.scm | 50 | 
1 files changed, 50 insertions, 0 deletions
| diff --git a/.config/guix/system/chaman.scm b/.config/guix/system/chaman.scm new file mode 100644 index 0000000..390b65f --- /dev/null +++ b/.config/guix/system/chaman.scm @@ -0,0 +1,50 @@ +;; This is an operating system configuration generated +;; by the graphical installer. + +(use-modules (gnu)) +(use-service-modules desktop networking ssh xorg) + +(operating-system +  (locale "en_CA.utf8") +  (timezone "America/Toronto") +  (keyboard-layout +    (keyboard-layout "us" "altgr-intl")) +  (bootloader +    (bootloader-configuration +      (bootloader grub-bootloader) +      (target "/dev/sda") +      (keyboard-layout keyboard-layout))) +  (mapped-devices +    (list (mapped-device +            (source +              (uuid "3d9d579d-3626-4fb2-9c16-beae804f1cf9")) +            (target "groot") +            (type luks-device-mapping)))) +  (file-systems +    (cons* (file-system +             (mount-point "/") +             (device "/dev/mapper/groot") +             (type "ext4") +             (dependencies mapped-devices)) +           %base-file-systems)) +  (host-name "chaman") +  (users (cons* (user-account +                  (name "bandali") +                  (comment "") +                  (group "users") +                  (home-directory "/home/bandali") +                  (supplementary-groups +                    '("wheel" "netdev" "audio" "video"))) +                %base-user-accounts)) +  (packages +    (append +      (list (specification->package "nss-certs")) +      %base-packages)) +  (services +    (append +      (list (service xfce-desktop-service-type) +            (service openssh-service-type) +            (set-xorg-configuration +              (xorg-configuration +                (keyboard-layout keyboard-layout)))) +      %desktop-services))) | 
