summaryrefslogtreecommitdiff
path: root/rise-home.scm
diff options
context:
space:
mode:
Diffstat (limited to 'rise-home.scm')
-rw-r--r--rise-home.scm47
1 files changed, 47 insertions, 0 deletions
diff --git a/rise-home.scm b/rise-home.scm
new file mode 100644
index 0000000..cd6598d
--- /dev/null
+++ b/rise-home.scm
@@ -0,0 +1,47 @@
+(use-modules (gnu home)
+ (gnu packages)
+ (gnu services)
+ (guix gexp)
+ (gnu home services shells))
+
+(home-environment
+ (packages (specifications->packages
+ '("alsa-utils"
+ "ardour"
+ "calf"
+ "carla"
+ "emacs"
+ "emacs-better-defaults"
+ "emacs-buffer-env"
+ "emacs-doom-modeline"
+ "emacs-doom-themes"
+ "emacs-flycheck-guile"
+ "emacs-geiser-guile"
+ "emacs-magit"
+ "emacs-markdown-mode"
+ "emacs-paredit"
+ "emacs-rainbow-delimiters"
+ "emacs-smex"
+ "emacs-use-package"
+ "emacs-which-key"
+ "firefox"
+ "font-google-noto-sans-cjk"
+ "font-google-noto-serif-cjk"
+ "font-inconsolata"
+ "gimp"
+ "git"
+ "gnome-tweaks"
+ "htop"
+ "jack"
+ "lsp-plugins"
+ "milkytracker"
+ "obs"
+ "openssh"
+ "patchage"
+ "qjackctl"
+ "sfxr")))
+ (services
+ (list (service home-bash-service-type
+ (home-bash-configuration
+ (aliases '(("grep" . "grep --color=auto")
+ ("ls" . "ls -ahlp --color=auto"))))))))