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

123 lines
3.7 KiB
Scheme

(use-modules (gnu home)
(gnu packages)
(gnu packages gnupg)
(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)
(gnu home services ssh)
(gnu home services syncthing))
(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"
; "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"
"vscodium"
"wireshark"
"zathura"
"zathura-pdf-mupdf"
"helix"
; "monero-gui"
"vim"
"neovim"
"nushell")))
(services
(list (service home-syncthing-service-type)
(service home-openssh-service-type
(home-openssh-configuration
(hosts
(list (openssh-host (name "utdallas1")
(host-name "cs1.utdallas.edu")
(user "edr220000"))
(openssh-host (name "utdallas2")
(host-name "cs2.utdallas.edu")
(user "edr220000"))
(openssh-host (name "utdallas3")
(host-name "cs3.utdallas.edu")
(user "edr220000"))
(openssh-host (name "utdpub")
(host-name "pubssh.utdallas.edu")
(user "edr220000"))
(openssh-host (name "utdallas1-proxy")
(host-name "cs1.utdallas.edu")
(user "edr220000")
(proxy
(list (proxy-jump
(host-name "pubssh.utdallas.edu")
(user "edr220000")))))
(openssh-host (name "utdallas3-proxy")
(host-name "cs3.utdallas.edu")
(user "edr220000")
(proxy
(list (proxy-jump
(host-name "pubssh.utdallas.edu")
(user "edr220000")))))
(openssh-host (name "proxmox")
(host-name "10.0.0.2")
(user "ethan"))
(openssh-host (name "docker")
(host-name "10.10.10.8")
(user "sudoer777"))
(openssh-host (name "git.sudoer777.dev")
(host-name "git.sudoer777.dev")
(user "git")
(port 222))))))
(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"))
("zathura/zathurarc" ,(local-file "./.config/zathura/zathurarc"))
("guix/channels.scm" ,(local-file "./channels.scm.lock"))))
(service home-symlink-manager-service-type))))