guixconfig/home/home-configuration.scm

283 lines
11 KiB
Scheme
Raw Normal View History

2023-11-28 21:38:47 +00:00
;; -*- mode: guix-scheme -*-
;; 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.
2023-11-28 22:52:59 +00:00
(use-modules
(gnu packages)
2023-11-28 22:57:58 +00:00
(gnu packages gnupg)
2024-03-08 09:43:22 +00:00
(gnu packages linux)
2023-12-26 22:34:36 +00:00
(gnu packages shellutils)
2024-03-13 22:11:20 +00:00
(nongnu packages game-client)
2023-11-28 22:52:59 +00:00
(gnu services)
(guix gexp)
2023-11-28 22:57:35 +00:00
(guix channels)
2023-11-28 22:57:58 +00:00
(gnu home)
2023-11-28 22:56:18 +00:00
(gnu home services)
2023-11-28 22:58:39 +00:00
(gnu home services desktop)
2023-12-08 11:56:00 +00:00
(gnu home services gnupg)
2023-11-28 22:57:18 +00:00
(gnu home services guix)
2023-12-08 11:56:00 +00:00
(gnu home services mail)
2023-11-28 22:52:59 +00:00
(gnu home services mcron)
(gnu home services pm)
(gnu home services shells)
(gnu home services shepherd)
2024-03-05 12:31:16 +00:00
(gnu home services sound)
2024-01-17 19:58:45 +00:00
(gnu home services ssh)
(gnu home services syncthing))
2023-11-28 21:38:47 +00:00
(home-environment
2023-11-28 22:52:59 +00:00
;; Below is the list of Home services. To search for available
;; services, run 'guix home search KEYWORD' in a terminal.
2024-04-30 21:38:57 +00:00
(
services
2024-04-05 11:25:10 +00:00
(list
(service home-shepherd-service-type)
(service home-msmtp-service-type
(home-msmtp-configuration
(default-account "LMail")
(accounts
(list
(msmtp-account
(name "LMail")
(configuration
(msmtp-configuration
(host "lyrion.ch")
(port 465)
(auth? #t)
(tls? #t)
(tls-starttls? #f)
(user "dziltener")
(from "dziltener@lyrion.ch")
(password-eval "pass Privat/Mailaccount | head -n 1"))))
(msmtp-account
(name "Red Sky")
(configuration
(msmtp-configuration
(host "gmail.com")
(port 587)
(auth? #t)
(tls? #t)
(tls-starttls? #f)
(user "dz@redsky.io")
(from "dziltener@lyrion.ch")
(password-eval "pass Privat/RedSkyGMail"))))))))
(simple-service 'ziltis-environment-variable-service
home-environment-variables-service-type
`(("PATH" . "$PATH:~/.local/bin")
("PASSWORD_STORE_DIR" . "$XDG_DATA_HOME/password-store")
("XDG_DATA_DIRS" . "$XDG_DATA_DIRS:$XDG_DATA_HOME/flatpak/exports/share")
("XDG_CURRENT_DESKTOP" . "sway")
("RTC_USE_PIPEWIRE" . "true")
("SSH_ASKPASS" . "ksshaskpass")
("ELM_DISPLAY" . "wl")
("SDL_VIDEODRIVER" . "wayland")
("MOZ_ENABLE_WAYLAND" . "1")
("SSL_CERT_FILE" . "$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt")
("CHICKEN_DOC_REPOSITORY" . "$XDG_DATA_HOME/chicken/doc")
;; ("CHICKEN_INSTALL_REPOSITORY" . "$XDG_DATA_HOME/chicken/eggs")
;; ("CHICKEN_REPOSITORY_PATH" . "$HOME/.guix-home/profile/var/lib/chicken/11/:$XDG_DATA_HOME/chicken/eggs")
;; ("CHICKEN_INSTALL_PREFIX" . "$HOME/.local")
("XCURSOR_SIZE" . "48")
))
(simple-service 'ziltis-home-files-service
home-files-service-type
`(#;(".gnupg/gpg-agent.conf" ,(local-file "gnupg/gpg-agent.conf"))))
(simple-service 'ziltis-xdg-configuration-files-service
home-xdg-configuration-files-service-type
`(("sway/config" ,(local-file "./sway/sway"))
("swaylock/config" ,(local-file "./swaylock/config"))
("swayidle/config" ,(local-file "./swayidle/config"))
("liquidpromptrc" ,(local-file "./liquidprompt/liquidpromptrc"))
("xdg-desktop-portal-wlr/config" ,(local-file "./xdg-desktop-portal-wlr/config"))))
(service home-syncthing-service-type)
(service home-batsignal-service-type
(home-batsignal-configuration
(ignore-missing? #t)))
(service home-mcron-service-type
(home-mcron-configuration
(jobs
'())))
(simple-service 'ziltis-packages
home-profile-service-type
(specifications->packages
2024-04-16 10:16:03 +00:00
(list "afew"
"bind:utils"
2024-04-05 11:25:10 +00:00
"bsd-games"
"bolt"
"browserpass-native"
"chicken"
"chicken-apropos"
"chicken-chicken-doc"
"chicken-srfi-18"
"curl"
"direnv"
"emacs-pgtk-xwidgets"
"emacs-desktop-environment"
"entr"
"eternalterminal"
2024-04-10 22:58:30 +00:00
"eudev"
2024-04-05 11:25:10 +00:00
"diff-so-fancy"
2024-05-10 10:53:41 +00:00
"file"
2024-04-05 11:25:10 +00:00
"firefox"
2024-04-30 21:38:57 +00:00
"flatpak@1.14.6"
2024-04-05 11:25:10 +00:00
"font-libertinus"
"font-nerdfont-monaspice"
"font-nerdfont-iosevka-term-slab"
"fuzzel"
"fzf"
"gammastep"
"gash"
2024-04-16 16:52:24 +00:00
"git"
2024-04-16 10:16:03 +00:00
"git:send-email"
2024-04-05 11:25:10 +00:00
"grim"
"guile"
"glibc-locales"
2024-04-30 23:26:11 +00:00
"heroic"
2024-04-05 11:25:10 +00:00
"hstr"
"hyprcursor"
"hyprpaper"
"hypridle"
"hyprlock"
2024-04-16 10:16:03 +00:00
"hyprland-xwayland-plugin-hyprsplit"
2024-04-05 11:25:10 +00:00
"icecat"
"icedove-wayland"
2024-04-16 10:16:03 +00:00
"isync"
2024-04-09 16:03:54 +00:00
"kdeconnect"
2024-04-05 11:25:10 +00:00
"kitty"
"ksshaskpass"
"kwayland-integration"
2024-05-10 10:53:41 +00:00
"lagrange"
2024-04-05 11:25:10 +00:00
"le-certs"
"ledger"
"libaacs"
"libbdplus"
"libbluray"
"liquidprompt"
2024-04-10 22:58:30 +00:00
"libportal"
2024-04-05 11:25:10 +00:00
"libsecret"
"make"
2024-04-16 16:52:24 +00:00
"muchsync"
2024-04-05 11:25:10 +00:00
"nix"
"nm-tray"
"nnn"
2024-05-10 10:53:41 +00:00
"nss-certs"
2024-04-16 10:16:03 +00:00
"notmuch"
2024-04-05 11:25:10 +00:00
"nwg-displays"
2024-05-10 10:53:41 +00:00
"offlineimap3"
2024-04-05 11:25:10 +00:00
"okular"
"openssh"
"password-store"
2024-04-15 20:28:41 +00:00
"pass-git-helper"
2024-04-05 11:25:10 +00:00
"pass-otp"
"pavucontrol"
"perl-mozilla-ca"
"pinentry-qt"
2024-04-16 10:16:03 +00:00
"pkg-config"
2024-04-05 11:25:10 +00:00
"plasma-wayland-protocols"
"process-compose"
"qt5ct"
"qtwayland@5.15.10"
"pv"
"rsync"
"rust"
"rust-cargo"
"sddm"
"senpai"
"sideload"
2024-04-07 16:42:38 +00:00
"signal-desktop"
2024-04-05 11:25:10 +00:00
"slurp"
"sshfs"
"steam"
2024-04-10 22:58:30 +00:00
"steam-devices-udev-rules"
2024-04-05 11:25:10 +00:00
"stow"
;; "sponge" https://linux.die.net/man/1/sponge
"swappy"
"swayidle"
"swaylock-effects"
"swaynotificationcenter"
"telegram-desktop"
"tig"
"tmate"
"tmux"
"tree-sitter"
"ungoogled-chromium-wayland"
"unzip"
"virt-manager"
"visidata"
2024-04-09 16:03:54 +00:00
"vlc"
2024-04-05 11:25:10 +00:00
"waybar"
"wlogout"
"xdg-dbus-proxy"
"xdg-utils"
2023-12-22 13:59:57 +00:00
2024-04-05 11:25:10 +00:00
;; "emacs-adaptive-wrap"
;; "emacs-adoc-mode"
;; "emacs-cape"
;; "emacs-catppuccin-theme"
;; "emacs-cider@1.13.0"
;; ;;"emacs-code-review"
;; "emacs-color-theme-modern"
;; "emacs-consult-eglot"
;; "emacs-consult-notes"
;; "emacs-corfu"
;; "emacs-dhall-mode"
;; "emacs-editorconfig"
;; "emacs-eglot"
;; "emacs-el-patch"
;; "emacs-embark-consult"
;; "emacs-envrc"
;; "emacs-evil"
;; "emacs-evil-collection"
;; "emacs-evil-easymotion"
;; "emacs-evil-snipe"
;; "emacs-forge"
;; "emacs-geiser"
;; "emacs-geiser-chicken"
;; "emacs-geiser-guile"
;; "emacs-git-gutter"
;; "emacs-goto-chg"
;; "emacs-guix"
;; "emacs-highlight-parentheses"
;; "emacs-keychain-environment"
;; "emacs-ledger-mode"
;; "emacs-ligature"
;; "emacs-magit"
;; "emacs-magit-todos"
;; "emacs-marginalia"
;; "emacs-moe-theme"
;; "emacs-nerd-icons-completion"
;; "emacs-nerd-icons-corfu"
;; "emacs-orderless"
;; "emacs-org"
;; "emacs-org-modern"
;; "emacs-org-rainbow-tags"
;; "emacs-org-roam"
;; "emacs-org-roam-ui"
;; "emacs-paredit"
;; "emacs-paren-face"
;; "emacs-pass"
;; "emacs-pinentry"
;; "emacs-seq"
;; "emacs-tempel"
;; "emacs-transient"
;; "emacs-tree-sitter"
;; "emacs-unicode-fonts"
;; "emacs-vertico"
;; "emacs-visual-fill-column"
;; "emacs-websocket"
;; "emacs-wgrep"
;; "emacs-which-key"
;; "emacs-xref-union"
;; "emacs-zig-mode"
;; "emacs-corfu-terminal"
)))
(service home-dbus-service-type)
(service home-pipewire-service-type
(home-pipewire-configuration
2024-04-16 23:53:58 +00:00
(wireplumber wireplumber-minimal)))
)
))