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

130 lines
4.2 KiB
Scheme
Raw Normal View History

2024-07-15 13:24:16 +00:00
(use-modules (gnu home)
(gnu packages)
2024-07-15 20:02:23 +00:00
(gnu packages gnupg)
2024-07-15 13:24:16 +00:00
(gnu services)
(guix gexp)
(guix channels)
(gnu home services)
(gnu home services shells)
(gnu home services symlink-manager)
(gnu home services guix)
2024-07-19 03:35:40 +00:00
(gnu home services gnupg)
2024-07-19 23:33:38 +00:00
(gnu home services ssh)
2024-07-19 03:35:40 +00:00
(gnu home services syncthing))
2024-07-15 13:24:16 +00:00
(home-environment
(packages (specifications->packages (list "emacs-guix"
"emacs-geiser-guile"
"emacs-geiser"
"guile"
"guix"
2024-08-04 21:33:43 +00:00
"speedtest-cli"
2024-07-15 13:24:16 +00:00
"emacs"
"make"
"just"
"bat"
"cups"
2024-07-22 03:11:47 +00:00
"kdenlive"
2024-07-15 13:24:16 +00:00
"weechat"
2024-08-04 04:11:58 +00:00
"nss-certs"
2024-08-02 01:03:53 +00:00
; "librewolf" - libcamera broken
2024-07-15 13:24:16 +00:00
"icecat"
2024-08-02 01:03:53 +00:00
; "ungoogled-chromium-wayland" - libcamera broken
2024-07-15 13:24:16 +00:00
"icedove-wayland"
2024-08-02 01:03:53 +00:00
; "swaylock-effects" - conflicts with host distro
; "swaynotificationcenter" - conflicts with host distro
; "waybar" - conflicts with host distro
2024-07-15 13:24:16 +00:00
"pijul"
"git"
2024-08-04 21:37:25 +00:00
"git:send-email"
2024-07-15 13:24:16 +00:00
"starship"
2024-08-02 01:03:53 +00:00
; "hyprland" - conflicts with host distro
; "inkscape" - libcamera broken
2024-07-15 13:24:16 +00:00
"lm-sensors"
"gimp"
"flatpak"
"libreoffice"
"kitty"
2024-08-02 01:03:53 +00:00
; "gnupg" - conflicts with host distro
2024-07-15 13:24:16 +00:00
"dolphin"
"keepassxc"
"htop"
"anki"
"audacity"
2024-08-02 01:03:53 +00:00
; "calibre" - build process gets stuck
2024-07-15 13:24:16 +00:00
"mpv"
"feh"
"fish"
"fish-foreign-env"
2024-08-02 01:03:53 +00:00
; "logseq" - no aarch64 build
; "obs" - libcamera broken
2024-07-15 13:24:16 +00:00
"qbittorrent"
"ranger"
"speedcrunch"
"vscodium"
"wireshark"
"zathura"
"zathura-pdf-mupdf"
"helix"
2024-08-02 01:03:53 +00:00
; "monero-gui" - tests for dependency fail
2024-07-15 13:24:16 +00:00
"vim"
2024-08-02 01:03:53 +00:00
; "firefox" - tests for dependency fail
"yt-dlp"
2024-07-15 13:24:16 +00:00
"neovim"
"nushell")))
(services
2024-07-19 03:35:40 +00:00
(list (service home-syncthing-service-type)
2024-07-19 23:33:38 +00:00
(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))))))
2024-07-15 13:24:16 +00:00
(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))))