diff options
author | bd <bdunahu@colostate.edu> | 2024-03-09 20:19:50 -0700 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-03-09 20:19:50 -0700 |
commit | 443504c783443e568148bc467d740381deaf814c (patch) | |
tree | 9f28fe57aa1da33357eab9f8ff8ae9219e6b7eef /.config/guix/modules/dwm-custom.scm | |
parent | 54884c3031769a51010d586d7d7d0248b62695e5 (diff) |
exwm -> dwm
Diffstat (limited to '.config/guix/modules/dwm-custom.scm')
-rw-r--r-- | .config/guix/modules/dwm-custom.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.config/guix/modules/dwm-custom.scm b/.config/guix/modules/dwm-custom.scm new file mode 100644 index 0000000..8a62488 --- /dev/null +++ b/.config/guix/modules/dwm-custom.scm @@ -0,0 +1,16 @@ +(define-module (dwm-custom) + #:use-module (gnu services) + #:use-module (gnu home services) + #:use-module (gnu home services shells) + #:use-module (gnu packages suckless) + #:use-module (gnu packages xorg) + #:use-module (gnu packages image) + #:use-module (guix gexp) + #:use-module (guix packages)) + +(define-public dwm-packages + (package + (inherit dwm) + (name "bdunahu-dwm") + (inputs (modify-inputs (package-inputs dwm))) + (source (local-file "dwm" #:recursive? #t)))) |