guix: add home-manifest and chaman's config
authorAmin Bandali <bandali@gnu.org>
Sun, 4 Aug 2019 21:11:26 +0000 (17:11 -0400)
committerAmin Bandali <bandali@gnu.org>
Sun, 4 Aug 2019 21:11:26 +0000 (17:11 -0400)
.config/guix/home-manifest.scm [new file with mode: 0644]
.config/guix/system/chaman.scm [new file with mode: 0644]

diff --git a/.config/guix/home-manifest.scm b/.config/guix/home-manifest.scm
new file mode 100644 (file)
index 0000000..bd4e6b5
--- /dev/null
@@ -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 (file)
index 0000000..390b65f
--- /dev/null
@@ -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)))