blob: d2e47d50dc7b23c7d351581a3ab05b72a0a3994d (
plain) (
blame)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
;; This "home-environment" file can be passed to 'guix home reconfigure'
;; to reproduce the content of your profile. This is "symbolic": it only
;; specifies package names. To reproduce the exact same profile, you also
;; need to capture the channels being used, as returned by "guix describe".
;; See the "Replicating Guix" section in the manual.
(use-modules (gnu home)
(ice-9 match)
(ice-9 ftw)
(ice-9 string-fun)
(gnu home services)
(gnu home services shells)
(gnu services)
(gnu packages admin)
(gnu packages gnome)
(gnu packages base)
(gnu packages imagemagick)
(gnu packages xfce)
(gnu packages video)
(gnu packages bash)
(gnu packages rust-apps)
(gnu packages networking)
(gnu packages linux)
(gnu packages llvm)
(gnu packages cmake)
(gnu packages music)
(gnu packages photo)
(gnu packages wm)
(gnu packages package-management)
(gnu packages terminals)
(gnu packages messaging)
(gnu packages xdisorg)
(gnu packages gcc)
(gnu packages gimp)
(gnu packages version-control)
(gnu packages golang)
(gnu packages disk)
(gnu packages image)
(gnu packages image-viewers)
(gnu packages web)
(gnu packages calendar)
(gnu packages libreoffice)
(gnu packages mail)
(gnu packages vim)
(gnu packages containers)
(gnu packages elf)
(gnu packages pulseaudio)
(gnu packages compton)
(gnu packages virtualization)
(gnu packages rsync)
(gnu packages tmux)
(gnu packages tor)
(gnu packages bittorrent)
(gnu packages compression)
(gnu packages w3m)
(gnu packages freedesktop)
(gnu packages pdf)
(guix gexp)
(guix build utils)
(guix channels))
(home-environment
;; Below is the list of packages that will show up in your
;; Home profile, under ~/.guix-home/profile.
;; Can't find
;; ccache chathistorysync chromium chrony delta dolphin firefox k9s kubectl newsboat pass steam toot turnstile wayvnc weechat
;; Won't build
;; avidemux
;; (packages (list imagemagick
;; network-manager
;; thunar
;; bash
;; bat
;; blueman
;; bluez
;; rust-cargo
;; clang
;; cmake
;; cmus
;; darktable
;; dunst
;; easytag
;; fastfetch
;; ffmpeg
;; flatpak
;; foot
;; gajim
;; gajim
;; gammastep
;; gcc
;; gimp
;; git
;; go
;; gparted
;; greetd
;; grim
;; htop
;; hut
;; imv
;; jq
;; khal
;; libreoffice
;; mercurial
;; mpv
;; neomutt
;; neovim
;; nmap
;; obs
;; opendoas
;; passt
;; patchelf
;; pavucontrol
;; picom
;; pipewire
;; podman
;; podman
;; profanity
;; qemu
;; ranger
;; ripgrep
;; rsync
;; seatd
;; slurp
;; swappy
;; sway
;; swayidle
;; swaylock
;; swayr
;; tmux
;; torsocks
;; transmission
;; unzip
;; vim
;; w3m
;; which
;; wl-clipboard
;; wofi
;; wtype
;; yt-dlp
;; ytfzf
;; zathura
;; zathura
;; zip
;; zstd))
;; Below is the list of Home services. To search for available
;; services, run 'guix home search KEYWORD' in a terminal.
(services
(list (service home-bash-service-type
(home-bash-configuration
(aliases '(("cat" . "/usr/bin/bat -p") ("cls" . "clear")
("codium" . "flatpak run com.vscodium.codium --no-sandbox --enable-features=UseOzonePlatform --ozone-platform=wayland")
("ls" . "ls -h -F --color=auto --group-directories-first")
("mpv" . "/usr/bin/mpv")
("sudo" . "/usr/bin/doas")
("tmux" . "tmux -2")))
(bashrc (list (local-file ".bashrc" "bashrc")))
(bash-profile (list (local-file ".bash_profile"
"bash_profile")))
(bash-logout (list (local-file ".bash_logout" "bash_logout")))))
(service home-files-service-type
(map (lambda (name)
`(,name ,(local-file (assume-source-relative-file-name
name)
(string-replace-substring (string-replace-substring
name
"."
"-")
"/"
"-"))))
(find-files "./.config"
(lambda (file stat)
(not (symbolic-link? file)))))))))
|