diff options
Diffstat (limited to '.config/guix')
| -rw-r--r-- | .config/guix/home-manifest.scm | 28 | ||||
| -rw-r--r-- | .config/guix/system/chaman.scm | 50 | 
2 files changed, 78 insertions, 0 deletions
| diff --git a/.config/guix/home-manifest.scm b/.config/guix/home-manifest.scm new file mode 100644 index 0000000..bd4e6b5 --- /dev/null +++ b/.config/guix/home-manifest.scm @@ -0,0 +1,28 @@ +(specifications->manifest +  '("cvs" +    "emacs" +    "emacs-magit" +    "emacs-org" +    "emacs-org-contrib" +    "font-adobe-source-code-pro" +    "font-gnu-freefont-ttf" +    "font-google-roboto" +    "font-liberation" +    "font-linuxlibertine" +    "font-sil-gentium" +    "font-tex-gyre" +    "font-ubuntu" +    "getmail" +    "git" +    "git:send-email" +    "gnupg" +    "haunt" +    "icecat" +    "isync" +    ;"msmtp" +    "ncdu" +    "notmuch" +    "openssl" +    "password-store" +    "rsync" +    "screen")) 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))) | 
