aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--homes/bard.scm4
-rw-r--r--kbg/services/config/dotfiles.scm6
2 files changed, 8 insertions, 2 deletions
diff --git a/homes/bard.scm b/homes/bard.scm
index 28090dfd..c0682176 100644
--- a/homes/bard.scm
+++ b/homes/bard.scm
@@ -29,5 +29,5 @@
%kbg-fonts))
(services
- (append bash-service)))
- ;;(configs-for-host 'bard))
+ (append bash-service
+ (configs-for-host 'bard))))
diff --git a/kbg/services/config/dotfiles.scm b/kbg/services/config/dotfiles.scm
index e7185241..38cb160d 100644
--- a/kbg/services/config/dotfiles.scm
+++ b/kbg/services/config/dotfiles.scm
@@ -98,6 +98,10 @@
vale-config-service
xdg-config-service))
+(define bard-configs
+ (append guix-config-service
+ tmux-config-service))
+
(define (configs-for-host hostname)
(cond ((eq? hostname 'daeva)
daeva-configs)
@@ -107,4 +111,6 @@
koi-configs)
((eq? hostname 'owl)
owl-configs)
+ ((eq? hostname 'bard)
+ bard-configs)
(else '())))