updated apps, messed with firefox some (need to rewrite), added

headphone "autoconnect"
This commit is contained in:
Ryan Schanzenbacher 2024-03-23 20:27:57 -04:00
parent 5778ed3544
commit 752de9a6d5
Signed by: ryan77627
GPG key ID: 81B0E222A3E2308E
4 changed files with 16 additions and 3 deletions

View file

@ -3,7 +3,7 @@
(url "https://git.savannah.gnu.org/git/guix.git") (url "https://git.savannah.gnu.org/git/guix.git")
(branch "master") (branch "master")
(commit (commit
"9ca2161ef43c43b2f52c4b8fc51d6bc882b04b76") "69951a61a1d8f1f2135ea2dc836738be282b97bc")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"9edb3f66fd807b096b48283debdcddccfea34bad" "9edb3f66fd807b096b48283debdcddccfea34bad"
@ -14,7 +14,7 @@
(url "https://gitlab.com/nonguix/nonguix") (url "https://gitlab.com/nonguix/nonguix")
(branch "master") (branch "master")
(commit (commit
"b6d05dbefd2664aa6706d13ec4f46526a814369f") "5baccd1d72594b4c85e958c2f34cac923345acb3")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"897c1a470da759236cc11798f4e0a5f7d4d59fbc" "897c1a470da759236cc11798f4e0a5f7d4d59fbc"

View file

@ -114,8 +114,9 @@
"password-store" "password-store"
"node" "node"
"kanshi" "kanshi"
"firefox"
"git-lfs")) "git-lfs"))
(list my-neovim wl-mirror firefox-wayland-new calcurse-fixed))) (list my-neovim wl-mirror calcurse-fixed)))
;; Below is the list of Home services. To search for available ;; Below is the list of Home services. To search for available
;; services, run 'guix home search KEYWORD' in a terminal. ;; services, run 'guix home search KEYWORD' in a terminal.

View file

@ -138,6 +138,9 @@ bind = ,XF86AudioNext, exec, playerctl next
bind = ,XF86AudioPrev, exec, playerctl previous bind = ,XF86AudioPrev, exec, playerctl previous
bind = ,XF86AudioStop, exec, playerctl stop bind = ,XF86AudioStop, exec, playerctl stop
# "Auto-connect headphones"
bind = $mainMod, H, exec, bluetoothctl connect AC:80:0A:1C:D6:C7
# Move workspace between monitors # Move workspace between monitors
bind = $mainMod CTRL SHIFT, left, movecurrentworkspacetomonitor, l bind = $mainMod CTRL SHIFT, left, movecurrentworkspacetomonitor, l
bind = $mainMod CTRL SHIFT, right, movecurrentworkspacetomonitor, r bind = $mainMod CTRL SHIFT, right, movecurrentworkspacetomonitor, r

View file

@ -9,6 +9,15 @@
#:use-module (guix build-system trivial) #:use-module (guix build-system trivial)
#:use-module (nongnu packages mozilla)) #:use-module (nongnu packages mozilla))
(define firefox*
(package/inherit
firefox
(inputs
(modify-inputs
(package-inputs firefox)
(delete "pipewire")
(append pipewire)))))
(define-public firefox-wayland-new (define-public firefox-wayland-new
(package (package
(inherit firefox) (inherit firefox)