diff options
Diffstat (limited to 'guix')
-rw-r--r-- | guix/home.scm | 14 | ||||
-rw-r--r-- | guix/system-create.scm | 9 | ||||
-rw-r--r-- | guix/uranus.scm | 4 |
3 files changed, 7 insertions, 20 deletions
diff --git a/guix/home.scm b/guix/home.scm index a750eeb..7522465 100644 --- a/guix/home.scm +++ b/guix/home.scm @@ -1,8 +1,4 @@ -;; 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. +;; Welcome to my ~ (define-module (home) #:use-module (guix gexp) @@ -24,7 +20,7 @@ (define thanos/fonts-packages '("font-jetbrains-mono" "font-iosevka-aile" "font-fira-mono" - "font-google-noto-sans-cjk" "font-iosevka")) + "font-fira-code" "font-google-noto-sans-cjk" "font-iosevka")) (define thanos/emacs-packages @@ -38,13 +34,13 @@ (home-environment (packages (specifications->packages - (append '("mu" "perl" "tree" "yt-dlp" "icecat" "gcc-toolchain" "wl-clipboard" - "syncthing" "hyfetch" "transmission" "isync" "mpv" "steam" "signal-desktop" + (append '("yt-dlp" "icecat" "gcc-toolchain" "wl-clipboard" + "hyfetch" "transmission" "isync" "mpv" "steam" "signal-desktop" "git" "fuzzel" "wl-clipboard" "alacritty" "password-store" "curl" "dino" "bind" "nmap" "hunspell" "wtype" "hunspell-dict-en-med" "hunspell-dict-el" "mlocate" "rsync" "grimshot" "nyxt" "swayidle" "wl-clipboard" "htop" "net-tools" "gnupg" "texlive" "texlive-collection-latexrecommended" - "libtree" "notmuch" "hunspell-dict-en-us" "sbcl" "xkeyboard-config") + "notmuch" "hunspell-dict-en-us" "sbcl" "xkeyboard-config") thanos/emacs-packages thanos/python-packages thanos/fonts-packages))) (services (list (service home-bash-service-type diff --git a/guix/system-create.scm b/guix/system-create.scm index cb5dccc..70f7570 100644 --- a/guix/system-create.scm +++ b/guix/system-create.scm @@ -80,14 +80,7 @@ (service wpa-supplicant-service-type) ;; Needed by NetworkManager (service network-manager-service-type) - (service transmission-daemon-service-type - (transmission-daemon-configuration - ;; Accept requests from this and other hosts on the - ;; local network - (rpc-whitelist-enabled? #t) - (rpc-whitelist '("::1" "127.0.0.1" "192.168.*")) - (rpc-username "z3us") - (rpc-password "{eab35f5df5b1e2691acf11f49be1b1dcffa55a59FyE5eNd8"))) + (service transmission-daemon-service-type) ;; tty login (service elogind-service-type) diff --git a/guix/uranus.scm b/guix/uranus.scm index ac8d63f..2a02fd5 100644 --- a/guix/uranus.scm +++ b/guix/uranus.scm @@ -5,9 +5,7 @@ #:use-module (gnu services dbus) #:use-module (gnu services docker) #:use-module (gnu services version-control) - #:use-module (gnu services cgit) - #:use-module (rosenthal services child-error) - #:use-module (rosenthal services networking)) + #:use-module (gnu services cgit)) (use-service-modules cups desktop networking ssh docker xorg) |