summaryrefslogtreecommitdiff
path: root/modules/home-packages
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-06-21 14:11:32 -0400
committerFreya Murphy <freya@freyacat.org>2024-06-21 14:11:32 -0400
commitec91773b25ee8bd7c3e36031ec0970e7bc30c6bd (patch)
tree5ebe7612005cb2e020a57f1a3dacbb332fb86638 /modules/home-packages
parentmispelling of UUID from UUId (diff)
downloaddotfiles-guix-ec91773b25ee8bd7c3e36031ec0970e7bc30c6bd.tar.gz
dotfiles-guix-ec91773b25ee8bd7c3e36031ec0970e7bc30c6bd.tar.bz2
dotfiles-guix-ec91773b25ee8bd7c3e36031ec0970e7bc30c6bd.zip
update kaworu and start dotfiles update
Diffstat (limited to 'modules/home-packages')
-rw-r--r--modules/home-packages/certs.scm2
-rw-r--r--modules/home-packages/mozillia.scm20
2 files changed, 9 insertions, 13 deletions
diff --git a/modules/home-packages/certs.scm b/modules/home-packages/certs.scm
index 5e356f8..442c8b2 100644
--- a/modules/home-packages/certs.scm
+++ b/modules/home-packages/certs.scm
@@ -17,7 +17,7 @@
#:recursive? #t))
(build-system trivial-build-system)
(license license:mpl2.0)
- (home-page "https://tylerm.dev")
+ (home-page "https://freya.cat")
(arguments
`(#:modules
((guix build utils))
diff --git a/modules/home-packages/mozillia.scm b/modules/home-packages/mozillia.scm
index ced4b64..34f582f 100644
--- a/modules/home-packages/mozillia.scm
+++ b/modules/home-packages/mozillia.scm
@@ -9,24 +9,19 @@
#: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
(package
- (inherit firefox*)
(name "firefox-wayland-new")
- (native-inputs '())
+ (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)
- ("firefox" ,firefox*)))
+ ("firefox" ,firefox)))
(build-system trivial-build-system)
(arguments
'(#:modules ((guix build utils))
@@ -47,6 +42,7 @@
(format port "#!~a \n
export LD_LIBRARY_PATH=~a \n
export MOZ_ENABLE_WAYLAND=1 \n
+export MOZ_USE_XINPUT2=1 \n
exec ~a $@\n"
(string-append bash "/bin/bash")
(string-append pipewire "/lib")