fixed firefox? also updated channels and kernel

This commit is contained in:
Ryan Schanzenbacher 2024-03-26 10:05:44 -04:00
parent 752de9a6d5
commit 75b0bef3a2
Signed by: ryan77627
GPG key ID: 81B0E222A3E2308E
4 changed files with 15 additions and 19 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
"69951a61a1d8f1f2135ea2dc836738be282b97bc") "c3f15443bc6d457758aad1326dcc6dcad9cf8d6e")
(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
"5baccd1d72594b4c85e958c2f34cac923345acb3") "a4356defe7d4ee9b0ac6789d67f94d00714a9409")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"897c1a470da759236cc11798f4e0a5f7d4d59fbc" "897c1a470da759236cc11798f4e0a5f7d4d59fbc"
@ -25,7 +25,7 @@
(url "https://codeberg.org/hako/rosenthal.git") (url "https://codeberg.org/hako/rosenthal.git")
(branch "trunk") (branch "trunk")
(commit (commit
"0e31205d7392c450bf33de24d7f0cc38aa82d4d5") "2c967e048f53aaaef002f114a9ee6c985be1278b")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"7677db76330121a901604dfbad19077893865f35" "7677db76330121a901604dfbad19077893865f35"

View file

@ -114,9 +114,9 @@
"password-store" "password-store"
"node" "node"
"kanshi" "kanshi"
"firefox" ;"firefox"
"git-lfs")) "git-lfs"))
(list my-neovim wl-mirror calcurse-fixed))) (list my-neovim wl-mirror firefox-wrapped 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

@ -100,7 +100,7 @@
(define-public base-operating-system (define-public base-operating-system
(operating-system (operating-system
(kernel linux) (kernel linux-6.8)
(firmware (list linux-firmware)) (firmware (list linux-firmware))
(locale "en_US.utf8") (locale "en_US.utf8")
(timezone "America/New_York") (timezone "America/New_York")
@ -187,6 +187,7 @@
(unix-sock-group "libvirt"))) (unix-sock-group "libvirt")))
(service virtlog-service-type) (service virtlog-service-type)
(simple-service 'spice-polkit polkit-service-type (list spice-gtk)) (simple-service 'spice-polkit polkit-service-type (list spice-gtk))
(simple-service 'hwdb-creation etc-service-type (list `("udev-here-oneoneone" ,(plain-file "issue" "test\n"))))
(service bluetooth-service-type (service bluetooth-service-type
(bluetooth-configuration (bluetooth-configuration
(bluez bluez-ryan) (bluez bluez-ryan)

View file

@ -9,20 +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* (define-public firefox-wrapped
(package/inherit
firefox
(inputs
(modify-inputs
(package-inputs firefox)
(delete "pipewire")
(append pipewire)))))
(define-public firefox-wayland-new
(package (package
(inherit firefox) (name "firefox-wrapped")
(name "firefox-wayland-new") (source #f)
(native-inputs '()) (version "0.1")
(synopsis "Simple wrapper for pipewire in firefox")
(description "Simple wrapper for pipewire in firefox")
(home-page "http://mozilla.org/")
(license license:mpl2.0)
(inputs (inputs
`(("bash" ,bash-minimal) `(("bash" ,bash-minimal)
("pipewire" ,pipewire) ("pipewire" ,pipewire)