diff options
Diffstat (limited to '')
-rw-r--r-- | modules/home-packages/mozillia.scm | 6 | ||||
-rw-r--r-- | modules/home-packages/virtualization.scm | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/modules/home-packages/mozillia.scm b/modules/home-packages/mozillia.scm index 3e4363e..ced4b64 100644 --- a/modules/home-packages/mozillia.scm +++ b/modules/home-packages/mozillia.scm @@ -7,9 +7,7 @@ #:use-module (gnu packages linux) #:use-module (nonguix build-system binary) #:use-module (guix build-system trivial) - #:use-module (nongnu packages mozilla) - #:export (firefox-wayland-new - firefox*)) + #:use-module (nongnu packages mozilla)) (define firefox* (package/inherit @@ -20,7 +18,7 @@ (delete "pipewire") (append pipewire))))) -(define firefox-wayland-new +(define-public firefox-wayland-new (package (inherit firefox*) (name "firefox-wayland-new") diff --git a/modules/home-packages/virtualization.scm b/modules/home-packages/virtualization.scm index d048c0d..5a7dbe4 100644 --- a/modules/home-packages/virtualization.scm +++ b/modules/home-packages/virtualization.scm @@ -9,6 +9,13 @@ #:use-module (home-packages firmware) #:use-module (guix gexp)) +(define-public libvirt-new + (package + (inherit libvirt) + (inputs + (modify-inputs (package-inputs libvirt) + (append ovmf-new))))) + (define-public virt-manager-new (package (inherit virt-manager) |