summaryrefslogtreecommitdiff
path: root/tw/home/server.scm
diff options
context:
space:
mode:
authorTimo Wilken2023-01-22 22:56:03 +0100
committerTimo Wilken2023-01-22 23:08:18 +0100
commitae3206dbf89b494264afbe457b13afebdea920d2 (patch)
tree6d18a37769387d913ce91c2af80cbadd7c020363 /tw/home/server.scm
parent599f82d0857d408b25f2df95163c3bd1ae596eda (diff)
Rename "common" modules to be base modules
Diffstat (limited to 'tw/home/server.scm')
-rw-r--r--tw/home/server.scm11
1 files changed, 11 insertions, 0 deletions
diff --git a/tw/home/server.scm b/tw/home/server.scm
new file mode 100644
index 00000000..95d860e5
--- /dev/null
+++ b/tw/home/server.scm
@@ -0,0 +1,11 @@
+(define-module (tw home lud)
+ #:use-module (gnu home)
+ #:use-module (tw home)
+ #:use-module (tw home emacs))
+
+(home-environment
+ ;; These packages will show up in the home profile, under ~/.guix-home/profile.
+ (packages (append common-packages emacs-packages))
+ ;; To search for available home services, run 'guix home search KEYWORD'.
+ (services (append (gnupg-services #:gui-pinentry? #f)
+ common-services emacs-services)))