summaryrefslogtreecommitdiff
path: root/guix/home-configuration.scm
blob: f2c0c9b04cc436da049f7c9703d16e0b1d76ceb8 (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
(use-modules (gnu home)
             (gnu packages)
             (gnu services)
             (guix gexp)
             (gnu home services dotfiles)
             (gnu home services shells))

(home-environment
  (packages 
    (map specification->package
         (list "acpi"
               "alacritty"
               "brightnessctl"
               "btop"
               "du-dust"
               "emacs-no-x"
               "fzf"
               "fastfetch"
               "gdb"
               "git"
               "grim"
               "hello"
               "jmtpfs"
               "lsd"
               "nasm"
               "pciutils"
               "ranger"
               "ripgrep"
               "slurp"
               "tokei"
               "tree"
               "usbutils"
               "wget"
               "xxd"
               "zoxide")))
  (services
    (append (list (service home-dotfiles-service-type
                           (home-dotfiles-configuration
                             (directories '("../files")))))
            %base-home-services)))