diff options
Diffstat (limited to '.config/guix/modules')
-rw-r--r-- | .config/guix/modules/packages/packages.scm | 8 | ||||
-rw-r--r-- | .config/guix/modules/services/base.scm | 6 |
2 files changed, 4 insertions, 10 deletions
diff --git a/.config/guix/modules/packages/packages.scm b/.config/guix/modules/packages/packages.scm index 74490c4..b36f9af 100644 --- a/.config/guix/modules/packages/packages.scm +++ b/.config/guix/modules/packages/packages.scm @@ -35,9 +35,8 @@ games ;; nethack gdb ;; gdb gimp ;; gimp-next - gnome ;; libnotify, brightnessctl + gnome ;; brightnessctl gnupg ;; gnupg - gnuzilla ;; icecat graphviz ;; graphviz haskell-xyz ;; pandoc image ;; flameshot @@ -60,13 +59,11 @@ screen ;; screen texlive ;; texlive tex ;; texlive-dvipng - tor-browsers ;; tor-browser version-control ;; git video ;; ffmpeg, mpv, yt-dlp vim ;; vim virtualization ;; qemu web ;; jq - wm ;; dunst xdisorg ;; xdotool, xrdb xorg ;; xf86-input-libinput, xf86-video-fbdev, xinit... ) @@ -96,7 +93,6 @@ (define bd-packages-desktop (list - dunst feh ffmpeg flameshot @@ -104,9 +100,7 @@ font-terminus gnupg graphviz - icecat imagemagick - libnotify mpv nsxiv password-store diff --git a/.config/guix/modules/services/base.scm b/.config/guix/modules/services/base.scm index 69fc815..08b53f2 100644 --- a/.config/guix/modules/services/base.scm +++ b/.config/guix/modules/services/base.scm @@ -108,8 +108,8 @@ ("vi" . "vim") ("xeb" . "emacsclient -nce '(switch-to-buffer nil)'") ("xet" . "emacsclient -nce '(shell)'") - ("ytta" . "yt-dlp --proxy \"socks5://localhost:9050\" --extract-audio --format bestaudio/best") - ("yttv" . "yt-dlp --proxy \"socks5://localhost:9050\" -f b"))) + ("ytta" . "yt-dlp --extract-audio --format bestaudio/best") + ("yttv" . "yt-dlp -f b"))) (bashrc (list (plain-file "bashrc" " @@ -118,7 +118,7 @@ alias | sed -E \"s/^alias ([^=]+)='(.*)'$/alias \\1 \\2 \\$*/g; s/'\\\\\\''/'/g; "))) (environment-variables '( - ("BROWSER" . "icecat") + ("BROWSER" . "librewolf") ("VISUAL" . "emacsclient") ("EDITOR" . "emacsclient") |