mirror of
https://git.in.rschanz.org/ryan77627/guix-config.git
synced 2024-11-07 07:36:09 -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")
|
(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"
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue