summaryrefslogtreecommitdiff
path: root/.config/guix/modules
diff options
context:
space:
mode:
Diffstat (limited to '.config/guix/modules')
-rw-r--r--.config/guix/modules/dwm/config.def.h2
-rw-r--r--.config/guix/modules/ymir.scm55
2 files changed, 29 insertions, 28 deletions
diff --git a/.config/guix/modules/dwm/config.def.h b/.config/guix/modules/dwm/config.def.h
index 3ed95e4..2946cf5 100644
--- a/.config/guix/modules/dwm/config.def.h
+++ b/.config/guix/modules/dwm/config.def.h
@@ -26,7 +26,7 @@ static const unsigned int alphas[][3] = {
};
/* tagging */
-static const char *tags[] = { "", "", "", "", "", "", "", "", "" };
+static const char *tags[] = { "", "", "", "", "", "", "", "", "" };
static const Rule rules[] = {
/* xprop(1):
diff --git a/.config/guix/modules/ymir.scm b/.config/guix/modules/ymir.scm
index ace200f..1260984 100644
--- a/.config/guix/modules/ymir.scm
+++ b/.config/guix/modules/ymir.scm
@@ -18,6 +18,7 @@
(group "users")
(home-directory (string-append "/home/" username))
(supplementary-groups '("audio"
+ "libvirt"
"netdev"
;; "transmission"
"video"
@@ -26,33 +27,33 @@
(define ymir
(operating-system
- (host-name "ymir")
- (locale "en_US.utf8")
- (timezone "America/Denver")
- (keyboard-layout (keyboard-layout "us"))
- (kernel-arguments
- (delete "quiet"
- %default-kernel-arguments))
+ (host-name "ymir")
+ (locale "en_US.utf8")
+ (timezone "America/New_York")
+ (keyboard-layout (keyboard-layout "us"))
+ (kernel-arguments
+ (delete "quiet"
+ %default-kernel-arguments))
- ;; 'root' is implicit
- (users (cons* user
- %base-user-accounts))
+ ;; 'root' is implicit
+ (users (cons* user
+ %base-user-accounts))
- ;; grub (uefi)
- (bootloader (bootloader-configuration
- (bootloader grub-efi-bootloader)
- (targets (list "/boot/efi"))
- (keyboard-layout keyboard-layout)))
+ ;; grub (uefi)
+ (bootloader (bootloader-configuration
+ (bootloader grub-efi-bootloader)
+ (targets (list "/boot/efi"))
+ (keyboard-layout keyboard-layout)))
- ;; OVERRIDE THESE
- (packages
- %base-packages)
- (services
- %base-services)
- (file-systems (cons*
- (file-system
- (mount-point "/")
- (device "none")
- (type "tmpfs")
- (check? #f))
- %base-file-systems))))
+ ;; OVERRIDE THESE
+ (packages
+ %base-packages)
+ (services
+ %base-services)
+ (file-systems (cons*
+ (file-system
+ (mount-point "/")
+ (device "none")
+ (type "tmpfs")
+ (check? #f))
+ %base-file-systems))))