summaryrefslogtreecommitdiff
path: root/rise-home.scm
blob: cd6598d5daa317b79ff7bd9d7cf19e379f33eda4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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"))))))))