2022-10-13 22:06:14 +02:00
|
|
|
(define-module (oni home config rincewind)
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((gnu home)
|
|
|
|
#:select (home-environment))
|
2023-11-06 09:28:00 +01:00
|
|
|
#:use-module ((gnu home services mail)
|
|
|
|
#:select (home-msmtp-service-type
|
|
|
|
home-msmtp-configuration
|
|
|
|
msmtp-configuration
|
|
|
|
msmtp-account))
|
|
|
|
#:use-module ((gnu home services guix)
|
|
|
|
#:select (home-channels-service-type))
|
2023-11-08 08:00:34 +01:00
|
|
|
#:use-module ((gnu home services gnupg)
|
|
|
|
#:select (home-gpg-agent-service-type
|
|
|
|
home-gpg-agent-configuration))
|
2024-04-07 09:18:21 +02:00
|
|
|
#:use-module ((gnu home services ssh)
|
|
|
|
#:select (home-ssh-agent-service-type))
|
2023-03-31 07:38:31 +02:00
|
|
|
#:use-module ((gnu packages certs)
|
|
|
|
#:select (nss-certs))
|
2023-08-30 07:20:40 +02:00
|
|
|
#:use-module ((gnu packages cdrom)
|
|
|
|
#:select (abcde))
|
2023-07-10 09:33:12 +02:00
|
|
|
#:use-module ((gnu packages databases)
|
|
|
|
#:select (recutils
|
|
|
|
emacs-rec-mode))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((gnu packages emacs)
|
2023-07-15 08:11:25 +02:00
|
|
|
#:select (emacs-next-tree-sitter))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((gnu packages emacs-xyz)
|
2023-03-31 07:38:31 +02:00
|
|
|
#:select (emacs-org-roam
|
2023-07-08 09:37:10 +02:00
|
|
|
emacs-guix
|
2024-01-30 22:24:02 +01:00
|
|
|
emacs-org-contacts
|
2024-02-06 08:42:25 +01:00
|
|
|
emacs-fennel-mode))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((gnu packages file-systems)
|
|
|
|
#:select (tmsu))
|
2023-03-31 07:38:31 +02:00
|
|
|
#:use-module ((gnu packages forth)
|
|
|
|
#:select (gforth))
|
|
|
|
#:use-module ((gnu packages gnome)
|
|
|
|
#:select (hicolor-icon-theme))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((gnu packages linux)
|
|
|
|
#:select (fakeroot))
|
2023-03-31 07:38:31 +02:00
|
|
|
#:use-module ((gnu packages mail)
|
|
|
|
#:select (notmuch
|
|
|
|
emacs-notmuch))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((gnu packages music)
|
|
|
|
#:select (easytag))
|
2023-07-15 10:07:54 +02:00
|
|
|
#:use-module ((gnu packages tree-sitter)
|
2023-07-18 07:09:53 +02:00
|
|
|
#:select (tree-sitter-bash
|
|
|
|
tree-sitter-scheme
|
|
|
|
tree-sitter-python
|
|
|
|
tree-sitter-org
|
|
|
|
tree-sitter-json
|
|
|
|
tree-sitter-css))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((gnu packages)
|
|
|
|
#:select (specification->package+output))
|
|
|
|
#:use-module ((gnu services)
|
|
|
|
#:select (service
|
|
|
|
simple-service))
|
|
|
|
#:use-module ((guix channels)
|
|
|
|
#:select (channel
|
|
|
|
make-channel-introduction
|
|
|
|
openpgp-fingerprint))
|
2023-07-14 09:54:48 +02:00
|
|
|
#:use-module ((guix gexp)
|
|
|
|
#:select (local-file
|
|
|
|
mixed-text-file))
|
2023-05-25 08:45:50 +02:00
|
|
|
#:use-module ((guix packages)
|
2023-09-29 23:35:02 +02:00
|
|
|
#:select (package-name
|
|
|
|
package-input-rewriting))
|
2023-05-25 08:45:50 +02:00
|
|
|
#:use-module ((guix transformations)
|
|
|
|
#:select (options->transformation))
|
2023-06-22 01:55:26 +02:00
|
|
|
#:use-module ((nongnu packages emacs)
|
|
|
|
#:select (emacs-org-roam-ui))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((oni home config common)
|
|
|
|
#:select (home-redshift-service
|
2023-03-16 08:47:23 +01:00
|
|
|
;; home-xbindkeys-service
|
2023-03-07 07:12:25 +01:00
|
|
|
home-zsh-service
|
|
|
|
home-guile-service
|
|
|
|
home-xmodmap-service
|
|
|
|
home-openssh-service
|
|
|
|
home-kitty-service))
|
2023-10-13 05:54:54 +02:00
|
|
|
#:use-module ((oni home services autokey)
|
|
|
|
#:select (home-autokey-service-type))
|
|
|
|
#:use-module ((oni home services copyq)
|
|
|
|
#:select (home-copyq-service-type))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((oni home services dunst)
|
|
|
|
#:select (home-dunst-default-service))
|
|
|
|
#:use-module ((oni home services emacs)
|
|
|
|
#:select (home-emacs-service-type
|
2023-08-15 09:21:24 +02:00
|
|
|
home-emacs-configuration
|
|
|
|
home-emacs-helpful-service-type
|
2023-08-30 07:21:30 +02:00
|
|
|
home-emacs-helpful-configuration
|
2023-09-15 07:54:36 +02:00
|
|
|
home-emacs-yasnippet-capf-service-type
|
|
|
|
home-emacs-dashboard-service-type
|
2023-09-28 08:44:06 +02:00
|
|
|
home-emacs-dashboard-configuration
|
2023-09-28 09:22:30 +02:00
|
|
|
home-emacs-eros-service-type
|
2023-10-04 07:12:22 +02:00
|
|
|
home-emacs-ace-link-service-type
|
2023-10-13 02:03:21 +02:00
|
|
|
home-emacs-ace-link-configuration
|
2024-01-28 09:39:45 +01:00
|
|
|
home-emacs-ace-link-notmuch-service-type
|
|
|
|
home-emacs-ace-link-notmuch-configuration
|
2023-11-09 00:13:10 +01:00
|
|
|
home-emacs-golden-ratio-service-type
|
2024-01-08 06:42:32 +01:00
|
|
|
home-emacs-pinentry-service-type
|
|
|
|
home-emacs-vterm-service-type
|
2024-04-20 07:58:03 +02:00
|
|
|
home-emacs-vterm-configuration
|
|
|
|
home-emacs-org-modern-service-type))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((oni home services environment)
|
|
|
|
#:select (home-environment-service))
|
|
|
|
#:use-module ((oni home services flameshot)
|
|
|
|
#:select (home-flameshot-service-type))
|
|
|
|
#:use-module ((oni home services kdeconnect)
|
|
|
|
#:select (home-kdeconnect-service-type))
|
|
|
|
#:use-module ((oni home services mpd)
|
|
|
|
#:select (home-mpd-service-type
|
|
|
|
home-mpd-configuration
|
|
|
|
<home-mpd-audio-output>
|
2023-03-08 08:51:42 +01:00
|
|
|
home-mpc-update-service-type
|
|
|
|
home-mpd-notify-service-type))
|
2023-10-09 07:07:36 +02:00
|
|
|
#:use-module ((oni home services mpv)
|
|
|
|
#:select (home-mpv-service-type
|
|
|
|
home-mpv-mpris-service-type))
|
2023-07-13 00:46:05 +02:00
|
|
|
#:use-module ((oni home services notmuch)
|
|
|
|
#:select (home-notmuch-service-type
|
|
|
|
home-notmuch-configuration))
|
2023-03-08 08:10:57 +01:00
|
|
|
#:use-module ((oni home services picom)
|
|
|
|
#:select (home-picom-service-type
|
|
|
|
home-picom-configuration))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((oni home services polybar)
|
|
|
|
#:select (home-polybar-service-type
|
|
|
|
home-polybar-configuration))
|
|
|
|
#:use-module ((oni home services rofi)
|
|
|
|
#:select (home-rofi-default-service))
|
2023-03-17 00:35:06 +01:00
|
|
|
#:use-module ((oni home services stumpwm)
|
|
|
|
#:select (home-stumpwm-service-type
|
2023-07-28 08:01:42 +02:00
|
|
|
home-stumpwm-configuration
|
|
|
|
home-stumpwm-gaps-service-type
|
2023-07-28 08:17:45 +02:00
|
|
|
home-stumpwm-gaps-configuration
|
|
|
|
home-stumpwm-stumptray-service-type
|
|
|
|
home-stumpwm-stumptray-configuration))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((oni home services syncthing)
|
|
|
|
#:select (home-syncthing-service-type))
|
2023-07-08 09:38:08 +02:00
|
|
|
#:use-module ((oni home services utilities)
|
|
|
|
#:select (home-inkplate-display-service-type))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((oni home services zsh)
|
|
|
|
#:select (home-zsh-syntax-highlighting-service-type
|
2023-08-30 07:24:25 +02:00
|
|
|
home-zsh-autosuggestions-service-type
|
|
|
|
home-zsh-autopair-service-type))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((oni packages count-emails)
|
|
|
|
#:select (count-emails))
|
|
|
|
#:use-module ((oni packages emacs)
|
2023-09-29 23:35:02 +02:00
|
|
|
#:select (emacs-inkplate
|
2024-01-16 10:11:31 +01:00
|
|
|
emacs-outli
|
2024-04-05 07:02:39 +02:00
|
|
|
emacs-syncthing-status
|
|
|
|
emacs-nginx-mode))
|
2023-03-15 08:21:03 +01:00
|
|
|
#:use-module ((oni packages emacs-config)
|
2023-03-17 00:35:27 +01:00
|
|
|
#:select (emacs-oni-org-roam
|
2023-05-25 09:25:24 +02:00
|
|
|
emacs-oni-elfeed
|
|
|
|
emacs-oni-elisp
|
|
|
|
emacs-oni-eshell
|
|
|
|
emacs-oni-core
|
|
|
|
emacs-oni-compilation
|
|
|
|
emacs-oni-common-lisp
|
|
|
|
emacs-oni-gui
|
2023-06-22 07:57:04 +02:00
|
|
|
emacs-oni-magit
|
2023-07-14 09:54:48 +02:00
|
|
|
emacs-oni-notmuch
|
2023-07-23 08:05:34 +02:00
|
|
|
emacs-oni-hy
|
2023-09-15 07:54:36 +02:00
|
|
|
emacs-oni-project
|
|
|
|
emacs-oni-bookmark
|
|
|
|
emacs-oni-dired
|
|
|
|
emacs-oni-browse-url
|
|
|
|
emacs-oni-c
|
|
|
|
emacs-oni-circe
|
|
|
|
emacs-oni-clojure
|
|
|
|
emacs-oni-cmake
|
|
|
|
emacs-oni-conf
|
|
|
|
emacs-oni-cpp
|
|
|
|
emacs-oni-csharp
|
|
|
|
emacs-oni-css
|
|
|
|
emacs-oni-diff-hl
|
|
|
|
emacs-oni-ediff
|
|
|
|
emacs-oni-elm
|
|
|
|
emacs-oni-emms
|
|
|
|
emacs-oni-epub
|
|
|
|
emacs-oni-eww
|
|
|
|
emacs-oni-grep
|
|
|
|
emacs-oni-haskell
|
|
|
|
emacs-oni-highlight-indent-guides
|
|
|
|
emacs-oni-html
|
|
|
|
emacs-oni-java
|
|
|
|
emacs-oni-json
|
|
|
|
emacs-oni-log-edit
|
|
|
|
emacs-oni-lua
|
|
|
|
emacs-oni-makefile
|
|
|
|
emacs-oni-nxml
|
|
|
|
emacs-oni-package
|
|
|
|
emacs-oni-projectile
|
|
|
|
emacs-oni-scheme
|
|
|
|
emacs-oni-sh
|
|
|
|
emacs-oni-shr
|
|
|
|
emacs-oni-tramp
|
2024-02-06 08:41:14 +01:00
|
|
|
emacs-oni-embrace
|
2024-04-05 07:01:12 +02:00
|
|
|
emacs-oni-yaml
|
2024-04-05 22:10:32 +02:00
|
|
|
emacs-oni-python
|
|
|
|
emacs-oni-git-commit))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((oni packages hlwm-run-or-raise)
|
|
|
|
#:select (hlwm-run-or-raise))
|
|
|
|
#:use-module ((oni packages inbox-size)
|
|
|
|
#:select (inbox-size))
|
|
|
|
#:use-module ((oni packages mpd-random-albums)
|
|
|
|
#:select (mpd-random-albums))
|
|
|
|
#:use-module ((oni packages notmuch-collect-tasks)
|
|
|
|
#:select (notmuch-collect-tasks))
|
|
|
|
#:use-module ((oni packages notmuch-tag-mailinglists)
|
|
|
|
#:select (notmuch-tag-mailinglists))
|
|
|
|
#:use-module ((oni packages pick-random-wallpaper)
|
|
|
|
#:select (pick-random-wallpaper))
|
|
|
|
#:use-module ((oni packages shutdown-rofi)
|
|
|
|
#:select (shutdown-rofi))
|
2023-03-16 08:47:23 +01:00
|
|
|
#:use-module ((oni packages stumpwm)
|
|
|
|
#:select (stumpwm+swank))
|
2024-01-30 22:26:03 +01:00
|
|
|
#:use-module ((oni packages terminals)
|
|
|
|
#:select (tym))
|
2023-03-07 07:12:25 +01:00
|
|
|
#:use-module ((oop goops)
|
|
|
|
#:select (make)))
|
2022-09-27 01:05:48 +02:00
|
|
|
|
|
|
|
(define (with-master-branch package)
|
|
|
|
"Apply a transformation to PACKAGE so that it uses the master branch."
|
|
|
|
((options->transformation
|
|
|
|
`((with-branch . ,(string-append (package-name package) "=master"))))
|
|
|
|
package))
|
2022-09-23 07:57:15 +02:00
|
|
|
|
2023-03-08 08:08:02 +01:00
|
|
|
(define rincewind-picom-service
|
|
|
|
(service home-picom-service-type
|
|
|
|
(home-picom-configuration
|
|
|
|
(backend "glx")
|
|
|
|
(glx-no-stencil #t)
|
|
|
|
(detect-transient #t)
|
|
|
|
(shadow #t)
|
|
|
|
(shadow-radius 5)
|
|
|
|
(shadow-opacity 85)
|
|
|
|
(shadow-offset-x 15)
|
|
|
|
(shadow-offset-y 15)
|
|
|
|
(shadow-exclude
|
|
|
|
'("name = 'mowedline'"
|
|
|
|
"class_g = 'trayer'"
|
|
|
|
"bounding_shaped"
|
2023-03-17 06:23:14 +01:00
|
|
|
"class_g = 'i3lock'"))
|
2023-03-08 08:08:02 +01:00
|
|
|
(wintypes
|
|
|
|
'((dnd (shadow . #f))
|
|
|
|
(dock (shadow . #f))))
|
|
|
|
(corner-radius 15)
|
2024-01-16 10:12:13 +01:00
|
|
|
(blur-background #f)
|
|
|
|
(blur-background-frame #f)
|
|
|
|
(fading #f))))
|
2023-03-08 08:08:02 +01:00
|
|
|
|
2023-09-19 09:37:47 +02:00
|
|
|
(define my-emacs emacs-next-tree-sitter)
|
|
|
|
|
2022-09-23 07:57:15 +02:00
|
|
|
(home-environment
|
2023-10-09 07:07:36 +02:00
|
|
|
(packages (list easytag
|
2022-09-27 01:05:48 +02:00
|
|
|
(specification->package+output "glibc-locales")
|
|
|
|
(specification->package+output "font-fantasque-sans")
|
|
|
|
(specification->package+output "font-comic-neue")
|
|
|
|
hlwm-run-or-raise
|
|
|
|
pick-random-wallpaper
|
|
|
|
notmuch-collect-tasks
|
|
|
|
notmuch-tag-mailinglists
|
2023-09-19 09:37:47 +02:00
|
|
|
(inbox-size my-emacs)
|
2022-10-05 08:19:34 +02:00
|
|
|
count-emails
|
2022-10-14 05:45:32 +02:00
|
|
|
shutdown-rofi
|
2022-10-05 08:19:34 +02:00
|
|
|
emacs-org-roam
|
2023-06-22 01:55:26 +02:00
|
|
|
emacs-org-roam-ui
|
2023-07-08 09:37:10 +02:00
|
|
|
emacs-org-contacts
|
2022-10-05 08:19:34 +02:00
|
|
|
fakeroot ; Needed for build arch packages
|
2022-11-08 05:16:19 +01:00
|
|
|
tmsu
|
|
|
|
mpd-random-albums
|
2023-03-31 07:38:31 +02:00
|
|
|
notmuch
|
2023-03-06 19:19:33 +01:00
|
|
|
emacs-inkplate
|
2023-11-08 00:57:00 +01:00
|
|
|
emacs-syncthing-status
|
2023-03-06 19:19:33 +01:00
|
|
|
emacs-outli
|
2023-03-31 07:38:31 +02:00
|
|
|
emacs-guix
|
2024-02-06 08:42:25 +01:00
|
|
|
emacs-fennel-mode
|
2023-09-15 07:54:36 +02:00
|
|
|
|
2023-09-19 09:37:47 +02:00
|
|
|
(emacs-oni-org-roam my-emacs)
|
2024-04-07 09:15:28 +02:00
|
|
|
emacs-oni-elisp
|
2023-05-25 09:25:24 +02:00
|
|
|
emacs-oni-core
|
|
|
|
emacs-oni-elfeed
|
2024-04-07 09:15:28 +02:00
|
|
|
emacs-oni-eshell
|
2023-05-25 09:25:24 +02:00
|
|
|
emacs-oni-compilation
|
2024-04-07 09:15:28 +02:00
|
|
|
emacs-oni-common-lisp
|
2023-05-25 09:25:24 +02:00
|
|
|
emacs-oni-gui
|
|
|
|
emacs-oni-magit
|
2024-01-30 22:24:02 +01:00
|
|
|
emacs-oni-notmuch
|
2023-07-14 09:54:48 +02:00
|
|
|
emacs-oni-hy
|
2023-07-23 08:05:34 +02:00
|
|
|
emacs-oni-project
|
2023-09-15 07:54:36 +02:00
|
|
|
emacs-oni-bookmark
|
|
|
|
emacs-oni-dired
|
|
|
|
emacs-oni-browse-url
|
|
|
|
emacs-oni-c
|
|
|
|
emacs-oni-circe
|
2024-04-07 09:15:28 +02:00
|
|
|
emacs-oni-clojure
|
|
|
|
emacs-oni-cmake
|
2023-09-15 07:54:36 +02:00
|
|
|
emacs-oni-conf
|
2024-04-07 09:15:28 +02:00
|
|
|
emacs-oni-cpp
|
|
|
|
emacs-oni-csharp
|
|
|
|
emacs-oni-css
|
2023-09-15 07:54:36 +02:00
|
|
|
emacs-oni-diff-hl
|
|
|
|
emacs-oni-ediff
|
|
|
|
emacs-oni-elm
|
|
|
|
emacs-oni-embrace
|
|
|
|
emacs-oni-emms
|
|
|
|
emacs-oni-epub
|
|
|
|
emacs-oni-eww
|
|
|
|
emacs-oni-grep
|
|
|
|
emacs-oni-haskell
|
|
|
|
emacs-oni-highlight-indent-guides
|
|
|
|
emacs-oni-html
|
|
|
|
emacs-oni-java
|
|
|
|
emacs-oni-json
|
|
|
|
emacs-oni-log-edit
|
|
|
|
emacs-oni-lua
|
|
|
|
emacs-oni-makefile
|
|
|
|
emacs-oni-nxml
|
|
|
|
emacs-oni-package
|
|
|
|
emacs-oni-projectile
|
2024-04-07 09:15:28 +02:00
|
|
|
emacs-oni-scheme
|
2023-09-15 07:54:36 +02:00
|
|
|
emacs-oni-sh
|
|
|
|
emacs-oni-shr
|
|
|
|
emacs-oni-tramp
|
2024-02-06 08:41:14 +01:00
|
|
|
emacs-oni-yaml
|
2024-04-07 09:15:28 +02:00
|
|
|
emacs-oni-python
|
2024-04-05 07:02:39 +02:00
|
|
|
emacs-nginx-mode
|
2024-04-05 22:10:32 +02:00
|
|
|
emacs-oni-git-commit
|
2023-09-15 07:54:36 +02:00
|
|
|
|
2023-07-15 10:07:54 +02:00
|
|
|
tree-sitter-bash
|
2023-07-18 07:09:53 +02:00
|
|
|
tree-sitter-scheme
|
|
|
|
tree-sitter-python
|
|
|
|
tree-sitter-org
|
|
|
|
tree-sitter-json
|
|
|
|
tree-sitter-css
|
2023-03-31 07:38:31 +02:00
|
|
|
gforth
|
2023-07-10 09:33:12 +02:00
|
|
|
recutils
|
|
|
|
emacs-rec-mode
|
2023-03-31 07:38:31 +02:00
|
|
|
;; Might be needed for certain icons?
|
|
|
|
hicolor-icon-theme
|
|
|
|
;; Might be needed for cetrificates
|
2024-01-30 22:26:03 +01:00
|
|
|
nss-certs
|
|
|
|
|
|
|
|
tym))
|
2022-09-23 07:57:15 +02:00
|
|
|
|
|
|
|
(services
|
|
|
|
(list
|
|
|
|
home-environment-service
|
|
|
|
home-rofi-default-service
|
2022-09-27 01:05:48 +02:00
|
|
|
home-dunst-default-service
|
|
|
|
home-redshift-service
|
2023-03-16 08:47:23 +01:00
|
|
|
;; home-xbindkeys-service
|
2022-09-27 01:05:48 +02:00
|
|
|
home-zsh-service
|
|
|
|
home-guile-service
|
|
|
|
home-xmodmap-service
|
|
|
|
home-openssh-service
|
|
|
|
home-kitty-service
|
2023-03-08 08:08:02 +01:00
|
|
|
rincewind-picom-service
|
2022-09-27 01:05:48 +02:00
|
|
|
|
|
|
|
;; This has to be the first extension because it needs to be added to the
|
|
|
|
;; configuration last.
|
|
|
|
(service home-zsh-syntax-highlighting-service-type)
|
|
|
|
(service home-zsh-autosuggestions-service-type)
|
2023-08-30 07:24:25 +02:00
|
|
|
(service home-zsh-autopair-service-type)
|
2022-09-23 07:57:15 +02:00
|
|
|
|
|
|
|
(simple-service 'my-channel-service
|
|
|
|
home-channels-service-type
|
|
|
|
(list
|
|
|
|
(channel
|
|
|
|
(name 'oni)
|
2023-04-02 07:57:42 +02:00
|
|
|
(url "https://code.ryuslash.org/ryuslash/guix-packages.git")
|
2022-09-23 07:57:15 +02:00
|
|
|
(introduction
|
|
|
|
(make-channel-introduction
|
|
|
|
"646573578b7adfbff415645fed201269076cebf6"
|
|
|
|
(openpgp-fingerprint
|
|
|
|
"061C C5C4 D936 C9A8 AECC 1A17 7D5C 407B 4350 25C1"))))
|
2023-08-30 07:24:34 +02:00
|
|
|
(channel
|
|
|
|
(name 'nonguix)
|
|
|
|
(url "https://gitlab.com/nonguix/nonguix")
|
|
|
|
;; Enable signature verification:
|
|
|
|
(introduction
|
|
|
|
(make-channel-introduction
|
|
|
|
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|
|
|
|
(openpgp-fingerprint
|
|
|
|
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
|
2022-09-23 07:57:15 +02:00
|
|
|
(channel
|
|
|
|
(name 'guix-gaming-games)
|
|
|
|
(url "https://gitlab.com/guix-gaming-channels/games.git")
|
|
|
|
(introduction
|
|
|
|
(make-channel-introduction
|
|
|
|
"c23d64f1b8cc086659f8781b27ab6c7314c5cca5"
|
|
|
|
(openpgp-fingerprint
|
2023-07-10 09:33:21 +02:00
|
|
|
"50F3 3E2E 5B0C 3D90 0424 ABE8 9BDC F497 A4BB CC7F"))))
|
|
|
|
(channel
|
|
|
|
(name 'rosenthal)
|
|
|
|
(url "https://codeberg.org/hako/rosenthal.git")
|
|
|
|
(branch "trunk")
|
|
|
|
(introduction
|
|
|
|
(make-channel-introduction
|
|
|
|
"7677db76330121a901604dfbad19077893865f35"
|
|
|
|
(openpgp-fingerprint
|
|
|
|
"13E7 6CD6 E649 C28C 3385 4DF5 5E5A A665 6149 17F7"))))))
|
2022-09-27 01:05:48 +02:00
|
|
|
|
2023-03-16 08:47:23 +01:00
|
|
|
;; (service home-polybar-service-type
|
|
|
|
;; (home-polybar-configuration
|
|
|
|
;; (bar "rincewind")))
|
2022-09-27 01:05:48 +02:00
|
|
|
|
2023-03-16 08:47:23 +01:00
|
|
|
;; (service home-kdeconnect-service-type)
|
2022-10-05 08:19:34 +02:00
|
|
|
(service home-syncthing-service-type)
|
|
|
|
|
|
|
|
(service home-emacs-service-type
|
|
|
|
(home-emacs-configuration
|
2023-09-19 09:37:47 +02:00
|
|
|
(package my-emacs)
|
2023-07-14 09:54:48 +02:00
|
|
|
(configurations
|
|
|
|
(list
|
|
|
|
(local-file "../services/emacs/init.el")
|
|
|
|
(mixed-text-file
|
|
|
|
"init.el"
|
|
|
|
"(with-eval-after-load 'hy-mode (require 'oni-hy))\n"
|
2023-07-23 08:05:34 +02:00
|
|
|
"(with-eval-after-load 'project (require 'oni-project))\n"
|
2023-09-15 07:54:36 +02:00
|
|
|
"(projectile-mode)\n"
|
2023-07-14 09:54:48 +02:00
|
|
|
"(setq custom-file \"~/.config/emacs/custom.el\")\n"
|
|
|
|
"(load custom-file)\n"
|
|
|
|
"(provide 'init)\n"
|
|
|
|
";;; init.el ends here\n")))))
|
2023-08-15 09:21:24 +02:00
|
|
|
(service home-emacs-helpful-service-type
|
|
|
|
(home-emacs-helpful-configuration
|
|
|
|
(configurations
|
|
|
|
(list
|
2023-08-30 07:21:30 +02:00
|
|
|
(local-file "../services/emacs/oni-helpful.el")))))
|
|
|
|
(service home-emacs-yasnippet-capf-service-type)
|
2023-10-13 05:56:47 +02:00
|
|
|
(service home-emacs-dashboard-service-type
|
|
|
|
(home-emacs-dashboard-configuration
|
|
|
|
(configurations
|
|
|
|
(list
|
|
|
|
(local-file "../services/emacs/oni-dashboard.el")))))
|
2023-09-28 08:44:06 +02:00
|
|
|
(service home-emacs-eros-service-type)
|
2023-10-04 07:12:22 +02:00
|
|
|
(service home-emacs-ace-link-service-type
|
|
|
|
(home-emacs-ace-link-configuration
|
|
|
|
(default-key "C-S-e")
|
|
|
|
(goto-address-key "C-S-e")
|
|
|
|
(org-mode-key "C-S-e")))
|
2024-01-28 09:39:45 +01:00
|
|
|
(service home-emacs-ace-link-notmuch-service-type
|
|
|
|
(home-emacs-ace-link-notmuch-configuration
|
|
|
|
(default-key "C-S-e")))
|
2023-10-13 02:03:21 +02:00
|
|
|
(service home-emacs-golden-ratio-service-type)
|
2023-11-09 00:13:10 +01:00
|
|
|
(service home-emacs-pinentry-service-type)
|
2024-01-08 06:42:32 +01:00
|
|
|
(service home-emacs-vterm-service-type
|
|
|
|
(home-emacs-vterm-configuration
|
|
|
|
(buffer-name-string "*vterm* %s")))
|
2024-04-20 07:58:03 +02:00
|
|
|
(service home-emacs-org-modern-service-type)
|
2022-10-07 08:21:43 +02:00
|
|
|
|
2022-11-08 05:16:19 +01:00
|
|
|
(service home-flameshot-service-type)
|
|
|
|
|
|
|
|
(service home-mpd-service-type
|
|
|
|
(home-mpd-configuration
|
|
|
|
(music-directory "~/music")
|
|
|
|
(playlist-directory "~/music/playlists")
|
|
|
|
(log-file "~/.local/share/mpd/mpd.log")
|
|
|
|
(pid-file "~/.local/share/mpd/mpd.pid")
|
|
|
|
(db-file "~/.local/share/mpd/mpd.db")
|
|
|
|
(state-file "~/.local/share/mpd/mpdstate")
|
|
|
|
(audio-outputs
|
|
|
|
(list (make <home-mpd-audio-output> #:type "pulse" #:name "MPD Pulse")
|
|
|
|
(make <home-mpd-audio-output>
|
|
|
|
#:type "fifo"
|
|
|
|
#:name "Visualizer"
|
|
|
|
#:path "/tmp/mpd.fifo"
|
2022-11-08 06:46:07 +01:00
|
|
|
#:format "44100:16:2")))))
|
2023-03-08 08:51:42 +01:00
|
|
|
(service home-mpc-update-service-type)
|
2023-03-17 00:35:06 +01:00
|
|
|
(service home-mpd-notify-service-type)
|
|
|
|
|
2023-10-09 07:07:36 +02:00
|
|
|
(service home-mpv-service-type)
|
2024-01-08 06:43:11 +01:00
|
|
|
;; [2024-01-05 Fri] mpv-mpris fails to compile:
|
|
|
|
;; mpris.c:1:10: fatal error: gio/gio.h: No such file or directory
|
|
|
|
;; Since I don't actually use it right now I really don't need it.
|
|
|
|
; (service home-mpv-mpris-service-type)
|
2023-10-09 07:07:36 +02:00
|
|
|
|
2023-03-17 00:35:06 +01:00
|
|
|
(service home-stumpwm-service-type
|
|
|
|
(home-stumpwm-configuration
|
2023-07-28 08:01:42 +02:00
|
|
|
(package stumpwm+swank)
|
|
|
|
(configurations
|
|
|
|
(list (local-file "../services/stumpwm/config")))))
|
|
|
|
(service home-stumpwm-gaps-service-type
|
|
|
|
(home-stumpwm-gaps-configuration
|
|
|
|
(configurations
|
|
|
|
(list (local-file "../services/stumpwm/config-gaps")))))
|
2023-07-28 08:17:45 +02:00
|
|
|
(service home-stumpwm-stumptray-service-type
|
|
|
|
(home-stumpwm-stumptray-configuration
|
|
|
|
(configurations
|
|
|
|
(list (mixed-text-file "config-stumptray"
|
|
|
|
"(require 'stumptray)\n"
|
|
|
|
"(stumptray::stumptray)\n")))))
|
2023-07-08 09:38:08 +02:00
|
|
|
|
2023-07-13 00:46:05 +02:00
|
|
|
(service home-inkplate-display-service-type)
|
|
|
|
(service home-notmuch-service-type
|
|
|
|
(home-notmuch-configuration
|
|
|
|
(database-path "/home/chelys/documents/mail")
|
|
|
|
(user-primary-email "tom@ryuslash.org")
|
|
|
|
(user-other-email '("ryuslash@gmail.com" "tom@iactor.nl"))
|
2023-07-23 08:05:46 +02:00
|
|
|
(new-ignore '(".nnmaildir" ".mbsyncstate" ".uidvalidity"
|
2023-10-13 05:54:54 +02:00
|
|
|
".mbsyncstate.journal" ".mbsyncstate.new"))))
|
|
|
|
|
|
|
|
(service home-autokey-service-type)
|
2023-11-06 09:28:00 +01:00
|
|
|
(service home-copyq-service-type)
|
|
|
|
|
|
|
|
(service home-msmtp-service-type
|
|
|
|
(home-msmtp-configuration
|
|
|
|
(defaults (msmtp-configuration
|
|
|
|
(auth? #t)
|
|
|
|
(tls? #t)
|
|
|
|
(tls-starttls? #t)
|
|
|
|
(port 587)))
|
|
|
|
(accounts
|
|
|
|
(list (msmtp-account
|
|
|
|
(name "gmail")
|
|
|
|
;; Use `secret-tool store --label=msmtp host smtp.gmail.com
|
|
|
|
;; service smtp user ryuslash@gmail.com' to store the
|
|
|
|
;; password.
|
|
|
|
(configuration (msmtp-configuration
|
|
|
|
(host "smtp.gmail.com")
|
|
|
|
(from "ryuslash@gmail.com")
|
|
|
|
(user "ryuslash@gmail.com"))))
|
|
|
|
(msmtp-account
|
|
|
|
(name "ryuslash")
|
|
|
|
;; Use `secret-tool store --label=msmtp host
|
|
|
|
;; smtp-ryuslash.alwaysdata.net service smtp user
|
|
|
|
;; tom@ryuslash.org' to store the password.
|
|
|
|
(configuration (msmtp-configuration
|
|
|
|
(host "smtp-ryuslash.alwaysdata.net")
|
|
|
|
(from "tom@ryuslash.org")
|
|
|
|
(user "tom@ryuslash.org"))))))
|
2023-11-08 08:00:34 +01:00
|
|
|
(default-account "ryuslash")))
|
|
|
|
|
|
|
|
(service home-gpg-agent-service-type
|
|
|
|
(home-gpg-agent-configuration
|
2024-04-07 09:18:21 +02:00
|
|
|
(ssh-support? #f)
|
2023-11-08 08:00:34 +01:00
|
|
|
(extra-content
|
2024-04-07 09:18:21 +02:00
|
|
|
"allow-emacs-pinentry\n")))
|
|
|
|
(service home-ssh-agent-service-type))))
|