1
0
Fork 0
guix-home-laptop/home-configuration.scm

85 lines
2.5 KiB
Scheme
Raw Normal View History

2024-07-15 13:24:16 +00:00
(use-modules (gnu home)
(gnu packages)
(gnu services)
(guix gexp)
(guix channels)
(gnu home services)
(gnu home services shells)
(gnu home services symlink-manager)
(gnu home services guix)
(gnu home services gnupg))
(home-environment
(packages (specifications->packages (list "emacs-guix"
"emacs-geiser-guile"
"emacs-geiser"
"guile"
"guix"
"emacs"
"make"
"just"
"bat"
"cups"
"weechat"
; "librewolf"
"icecat"
"ungoogled-chromium-wayland"
"icedove-wayland"
; "swaylock-effects"
; "swaynotificationcenter"
"pijul"
"git"
"starship"
"openssh"
; "hyprland"
"inkscape"
"lm-sensors"
"gimp"
"flatpak"
"libreoffice"
"kitty"
"gnupg"
"dolphin"
"keepassxc"
"htop"
"anki"
"audacity"
"calibre"
"mpv"
"feh"
"fish"
"fish-foreign-env"
; "logseq"
"obs"
"qbittorrent"
"ranger"
"speedcrunch"
"syncthing"
"vscodium"
"wireshark"
"zathura"
"zathura-pdf-mupdf"
"helix"
; "monero-gui"
"vim"
"neovim"
"nushell")))
(services
2024-07-15 13:46:27 +00:00
(list (service home-gpg-agent-service-type
2024-07-15 13:24:16 +00:00
(home-gpg-agent-configuration
(ssh-support? #t)))
(service home-fish-service-type
(home-fish-configuration
(config
(list
(local-file ".config/fish/config.fish")))))
(service home-files-service-type
`((".emacs.d/init.el" ,(local-file "./.emacs.d/init.el"))
(".gitconfig" ,(local-file "./gitconfig"))))
(service home-xdg-configuration-files-service-type
`(("weechat/weechat.conf" ,(local-file "./.config/weechat/weechat.conf"))
2024-07-15 13:46:27 +00:00
("zathura/zathurarc" ,(local-file "./.config/zathura/zathurarc"))
("guix/channels.scm" ,(local-file "./channels.scm.lock"))))
2024-07-15 13:24:16 +00:00
(service home-symlink-manager-service-type))))