summaryrefslogtreecommitdiff
path: root/modules/home-packages
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-09-14 08:59:36 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-09-14 08:59:36 -0400
commit0e7f944b53208151bc48f586e37724dcc682f9d0 (patch)
tree09fc07c5ce9c6ce2888d241ca621195cb79dbce4 /modules/home-packages
parent867-5309 (diff)
downloaddotfiles-guix-0e7f944b53208151bc48f586e37724dcc682f9d0.tar.gz
dotfiles-guix-0e7f944b53208151bc48f586e37724dcc682f9d0.tar.bz2
dotfiles-guix-0e7f944b53208151bc48f586e37724dcc682f9d0.zip
update configs and virt packages
Diffstat (limited to 'modules/home-packages')
-rw-r--r--modules/home-packages/gcc.scm12
-rw-r--r--modules/home-packages/virtualization.scm4
2 files changed, 14 insertions, 2 deletions
diff --git a/modules/home-packages/gcc.scm b/modules/home-packages/gcc.scm
new file mode 100644
index 0000000..5d6a208
--- /dev/null
+++ b/modules/home-packages/gcc.scm
@@ -0,0 +1,12 @@
+(define-module (home-packages gcc)
+ #:use-module (gnu)
+ #:use-module (guix packages)
+ #:use-module (gnu packages gcc))
+
+(define-public gcc-new
+ (package
+ (inherit gcc)
+ (name "gcc-new")
+ (outputs (package-outputs gcc))))
+
+
diff --git a/modules/home-packages/virtualization.scm b/modules/home-packages/virtualization.scm
index e87b0e0..e85b0af 100644
--- a/modules/home-packages/virtualization.scm
+++ b/modules/home-packages/virtualization.scm
@@ -19,7 +19,7 @@
(substitute-keyword-arguments (package-arguments libvirt)
((#:phases phases)
#~(modify-phases #$phases
- (add-after 'install 'install-firmware
+ (add-after 'install 'install-uefi
(lambda _
(let ((fmw (string-append #$output "/share/qemu")))
(mkdir-p fmw)
@@ -38,7 +38,7 @@
(substitute-keyword-arguments (package-arguments virt-manager)
((#:phases phases)
#~(modify-phases #$phases
- (add-after 'install 'install-firmware
+ (add-after 'install 'install-uefi
(lambda _
(let ((fmw (string-append #$output "/share/qemu")))
(mkdir-p fmw)