mirror of
https://git.in.rschanz.org/ryan77627/guix-config.git
synced 2024-11-07 06:56:11 -05:00
fixed firefox? also updated channels and kernel
This commit is contained in:
parent
752de9a6d5
commit
75b0bef3a2
4 changed files with 15 additions and 19 deletions
|
@ -3,7 +3,7 @@
|
|||
(url "https://git.savannah.gnu.org/git/guix.git")
|
||||
(branch "master")
|
||||
(commit
|
||||
"69951a61a1d8f1f2135ea2dc836738be282b97bc")
|
||||
"c3f15443bc6d457758aad1326dcc6dcad9cf8d6e")
|
||||
(introduction
|
||||
(make-channel-introduction
|
||||
"9edb3f66fd807b096b48283debdcddccfea34bad"
|
||||
|
@ -14,7 +14,7 @@
|
|||
(url "https://gitlab.com/nonguix/nonguix")
|
||||
(branch "master")
|
||||
(commit
|
||||
"5baccd1d72594b4c85e958c2f34cac923345acb3")
|
||||
"a4356defe7d4ee9b0ac6789d67f94d00714a9409")
|
||||
(introduction
|
||||
(make-channel-introduction
|
||||
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|
||||
|
@ -25,7 +25,7 @@
|
|||
(url "https://codeberg.org/hako/rosenthal.git")
|
||||
(branch "trunk")
|
||||
(commit
|
||||
"0e31205d7392c450bf33de24d7f0cc38aa82d4d5")
|
||||
"2c967e048f53aaaef002f114a9ee6c985be1278b")
|
||||
(introduction
|
||||
(make-channel-introduction
|
||||
"7677db76330121a901604dfbad19077893865f35"
|
||||
|
|
|
@ -114,9 +114,9 @@
|
|||
"password-store"
|
||||
"node"
|
||||
"kanshi"
|
||||
"firefox"
|
||||
;"firefox"
|
||||
"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
|
||||
;; services, run 'guix home search KEYWORD' in a terminal.
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
|
||||
(define-public base-operating-system
|
||||
(operating-system
|
||||
(kernel linux)
|
||||
(kernel linux-6.8)
|
||||
(firmware (list linux-firmware))
|
||||
(locale "en_US.utf8")
|
||||
(timezone "America/New_York")
|
||||
|
@ -187,6 +187,7 @@
|
|||
(unix-sock-group "libvirt")))
|
||||
(service virtlog-service-type)
|
||||
(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
|
||||
(bluetooth-configuration
|
||||
(bluez bluez-ryan)
|
||||
|
|
|
@ -9,20 +9,15 @@
|
|||
#:use-module (guix build-system trivial)
|
||||
#: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-wrapped
|
||||
(package
|
||||
(inherit firefox)
|
||||
(name "firefox-wayland-new")
|
||||
(native-inputs '())
|
||||
(name "firefox-wrapped")
|
||||
(source #f)
|
||||
(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
|
||||
`(("bash" ,bash-minimal)
|
||||
("pipewire" ,pipewire)
|
||||
|
|
Loading…
Reference in a new issue