diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/home-config/base-system.scm | 7 | ||||
-rw-r--r-- | modules/home-packages/certs.scm | 2 | ||||
-rw-r--r-- | modules/home-packages/mozillia.scm | 20 |
3 files changed, 12 insertions, 17 deletions
diff --git a/modules/home-config/base-system.scm b/modules/home-config/base-system.scm index e35e0fa..db91682 100644 --- a/modules/home-config/base-system.scm +++ b/modules/home-config/base-system.scm @@ -27,7 +27,6 @@ #:use-module (gnu services avahi) #:use-module (gnu services spice) #:use-module (gnu services virtualization) - #:use-module (home-services ntp) #:use-module (home-packages wm) #:use-module (home-packages certs) #:use-module (home-packages virtualization)) @@ -58,10 +57,10 @@ ;; The list of user accounts ('root' is implicit). (users (cons* (user-account - (name "tylerm") - (comment "Tyler Murphy") + (name "freya") + (comment "Freya Murphy") (group "users") - (home-directory "/home/tylerm") + (home-directory "/home/freya") (shell (file-append zsh "/bin/zsh")) (supplementary-groups '("wheel" "audio" "lp" "docker" "plugdev" "libvirt" "kvm" "netdev" "video" "tty"))) %base-user-accounts)) 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") |