summaryrefslogtreecommitdiff
path: root/.config/guix/modules/packages/packages.scm
diff options
context:
space:
mode:
Diffstat (limited to '.config/guix/modules/packages/packages.scm')
-rw-r--r--.config/guix/modules/packages/packages.scm190
1 files changed, 0 insertions, 190 deletions
diff --git a/.config/guix/modules/packages/packages.scm b/.config/guix/modules/packages/packages.scm
deleted file mode 100644
index a3ebd3e..0000000
--- a/.config/guix/modules/packages/packages.scm
+++ /dev/null
@@ -1,190 +0,0 @@
-(define-module (packages packages)
- #:use-module (gnu)
- #:use-module (gnu system)
- #:use-module (guix gexp)
- #:use-module (guix packages)
- #:use-module (tanelorn packages fonts)
- #:use-module (tanelorn packages wm)
- #:use-module (tanelorn packages engineering)
- #:export (bd-packages-system
- bd-packages-laptop
- bd-packages-desktop
- bd-packages-fun
- bd-packages-extra
- bd-packages-development
- ))
-
-;;; Commentary:
-;;; Code:
-
-(use-package-modules
- admin ;; netcat
- algebra ;; bc
- assembly ;; nasm
- base ;; make
- chromium ;; ungoogled-chromium
- clojure ;; clojure
- commencement ;; gcc-toolchain
- compression ;; unzip, zip
- compton ;; picom
- cryptsetup ;; cryptsetup
- curl ;; curl
- databases ;; recutils
- education ;; anki
- emulators ;; mupen64plus*, bsnes, mgba
- engineering ;; rizin, cutter
- fonts ;; font-terminus, font-openmoji
- fontutils ;; fontconfig
- freedesktop ;; xdg-utils
- games ;; nethack
- gdb ;; gdb
- gimp ;; gimp-next
- gnome ;; brightnessctl
- gnupg ;; gnupg
- graphviz ;; graphviz
- haskell-xyz ;; pandoc
- image ;; flameshot
- imagemagick ;; imagemagick
- image-viewers ;; feh, nsxiv
- libreoffice ;; libreoffice
- librewolf ;; librewolf
- linux ;; sysstat, tlp, alsa-plugins
- lisp ;; sbcl
- mail ;; offlineimap
- man ;; man-pages
- networking ;; maccchanger
- package-management ;; stow
- password-utils ;; pass-otp, password-store
- pkg-config ;; pkg-config
- pdf ;; xpdf, pdfgrep, zathura, zathura-pdf-mupdf
- pulseaudio ;; pavucontrol, pulseaudio,
- python ;; python
- rsync ;; rsync
- rust-apps ;; ripgrep
- screen ;; screen
- texlive ;; texlive, texlive-biber
- tex ;; texlive-dvipng
- tor-browsers ;; torbrowser
- version-control ;; git
- video ;; ffmpeg, mpv, yt-dlp
- vim ;; vim
- virtualization ;; qemu
- web ;; jq
- xdisorg ;; xdotool, xrdb
- xorg ;; xf86-input-libinput, xf86-video-fbdev, xinit...
- )
-
-
-
-(define bd-packages-system
- (append!
- (list
- cryptsetup
- curl
- git
- man-pages
- recutils
- ripgrep
- screen
- sysstat
- unzip
- vim
- zip)
- %base-packages))
-
-(define bd-packages-laptop
- (list
- brightnessctl
- macchanger
- tlp))
-
-(define bd-packages-desktop
- (list
- alsa-plugins
- eww/x11
- feh
- ffmpeg
- flameshot
- fontconfig
- font-iosevka
- font-medieval-sharp
- font-openmoji
- font-runa-mono
- font-terminus
- gnupg
- graphviz
- imagemagick
- libreoffice
- mpv
- nsxiv
- password-store
- pass-otp
- pavucontrol
- picom
- pulseaudio
- setxkbmap
- texlive
- texlive-biber
- texlive-dvipng
- texlive-pgfgantt
- torbrowser
- xdg-utils
- xf86-input-libinput
- xf86-video-fbdev
- xinit
- xinput
- xkbcomp
- xorg-server
- xrandr
- xrdb
- xset
- xss-lock
- yt-dlp
- zathura
- zathura-pdf-mupdf
- ))
-
-(define bd-packages-fun
- (list
- bsnes
- dolphin-emu
- mgba
- mupen64plus-ui-console
- mupen64plus-video-glide64mk2
- nethack
- ))
-
-(define bd-packages-extra
- (list
- gimp
- librewolf
- pdfgrep
- qemu
- ungoogled-chromium
- xpdf ; pdftotext
- ))
-
-(define bd-packages-development
- (list
- anki
- bc
- cl-asdf
- clojure
- clojure-tools
- gcc-toolchain
- gdb
- gnu-make
- jq
- nasm
- netcat
- offlineimap3
- pandoc
- pkg-config
- python
- radare2-6.0.7
- rsync
- sbcl
- stow
- ))
-
-;;; packages.scm ends here