867-5309
This commit is contained in:
parent
2396b0aeb6
commit
e192e86738
5 changed files with 7 additions and 119 deletions
47
:w
47
:w
|
@ -1,47 +0,0 @@
|
|||
(define-module (home-packages virtualization)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages package-management)
|
||||
#:use-module (gnu packages build-tools)
|
||||
#:use-module (gnu packages virtualization)
|
||||
#:use-module (gnu packages firmware)
|
||||
#: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)))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments libvirt)
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(add-after 'install 'ovmf
|
||||
(lambda _
|
||||
(let ((fmw (string-append #$output "/usr/share/OVMF")))
|
||||
(mkdir-p fmw)
|
||||
(copy-recursively #$(file-append ovmf-new "/share/firmware") fmw))
|
||||
(let ((fmw (string-append #$output "/share/qemu")))
|
||||
(mkdir-p fmw)
|
||||
(copy-recursively #$(file-append qemu "/share/qemu") fmw))
|
||||
))
|
||||
))))))
|
||||
|
||||
(define-public virt-manager-new
|
||||
(package
|
||||
(inherit virt-manager)
|
||||
(name "virt-manager-new")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments virt-manager)
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(add-after 'install 'ovmf
|
||||
(lambda _
|
||||
(let ((fmw (string-append #$output "/usr/share/OVMF")))
|
||||
(mkdir-p fmw)
|
||||
(copy-recursively #$(file-append ovmf-new "/share/firmware") fmw)
|
||||
)))
|
||||
))))))
|
|
@ -17,7 +17,7 @@ set $scale 1.5
|
|||
set $bg ~/.config/sway/nya0.png
|
||||
|
||||
# Set Efects
|
||||
set $radius 0
|
||||
set $radius 5
|
||||
set $shadows on
|
||||
set $shadow_blur 50
|
||||
set $blur enable
|
||||
|
|
|
@ -1,16 +1,18 @@
|
|||
### Set borders
|
||||
gaps inner 10
|
||||
for_window [class="^.*"] border pixel 2
|
||||
default_border pixel 2
|
||||
default_floating_border pixel 2
|
||||
|
||||
### Colors
|
||||
|
||||
# class border backgr. text indicator child_border
|
||||
client.background #14171d
|
||||
client.focused #4d4754 #14171d #ffffff #ada0a8 #4d4754
|
||||
client.focused_inactive #4d4754 #14171d #ffffff #4d4754 #14171d
|
||||
client.focused #4d4754 #14171d #ffffff #4d4754 #4d4754
|
||||
client.focused_inactive #4d4754 #14171d #ffffff #14171d #14171d
|
||||
client.focused_tab_title #4d4754 #14171d #ffffff
|
||||
client.unfocused #14171d #14171d #ffffff #4d4754 #14171d
|
||||
client.urgent #cc5c5c #a63a3a #ffffff #cc5c5c #a63a3a
|
||||
client.unfocused #14171d #14171d #ffffff #14171d #14171d
|
||||
client.urgent #cc5c5c #a63a3a #ffffff #a63a3a #a63a3a
|
||||
|
||||
### SwayFX
|
||||
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
(define-module (home-packages firmware)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages package-management)
|
||||
#:use-module (gnu packages build-tools)
|
||||
#:use-module (gnu packages virtualization)
|
||||
#:use-module (gnu packages firmware)
|
||||
#:use-module (guix gexp))
|
||||
|
||||
(define-public ovmf-new
|
||||
(package
|
||||
(inherit ovmf)
|
||||
(name "ovmf-new")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments ovmf)
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let ((fmw (string-append #$output "/share/firmware")))
|
||||
(mkdir-p fmw)
|
||||
(copy-recursively "Build/OvmfX64/RELEASE_GCC49/FV" fmw)
|
||||
(copy-file "Build/OvmfX64/RELEASE_GCC49/FV/OVMF.fd" (string-append fmw "/OVMF_CODE.fd"))
|
||||
)))
|
||||
))))))
|
|
@ -6,7 +6,6 @@
|
|||
#:use-module (gnu packages build-tools)
|
||||
#:use-module (gnu packages virtualization)
|
||||
#:use-module (gnu packages firmware)
|
||||
#:use-module (home-packages firmware)
|
||||
#:use-module (guix gexp))
|
||||
|
||||
(define-public libvirt-new
|
||||
|
@ -25,9 +24,6 @@
|
|||
(let ((fmw (string-append #$output "/share/qemu")))
|
||||
(mkdir-p fmw)
|
||||
(copy-recursively #$(file-append qemu "/share/qemu") fmw))
|
||||
(let ((fmw (string-append #$output "/usr/share/OVMF")))
|
||||
(mkdir-p fmw)
|
||||
(copy-recursively #$(file-append ovmf-new "/share/firmware") fmw))
|
||||
))
|
||||
))))))
|
||||
|
||||
|
@ -47,42 +43,5 @@
|
|||
(let ((fmw (string-append #$output "/share/qemu")))
|
||||
(mkdir-p fmw)
|
||||
(copy-recursively #$(file-append qemu "/share/firmware") fmw))
|
||||
(let ((fmw (string-append #$output "/usr/share/OVMF")))
|
||||
(mkdir-p fmw)
|
||||
(copy-recursively #$(file-append ovmf-new "/share/firmware") fmw))
|
||||
))
|
||||
))))))
|
||||
|
||||
;; (define-public libvirt-new
|
||||
;; (package
|
||||
;; (inherit libvirt)
|
||||
;; (inputs
|
||||
;; (modify-inputs (package-inputs libvirt)
|
||||
;; (append ovmf-new)))
|
||||
;; (arguments
|
||||
;; (substitute-keyword-arguments (package-arguments libvirt)
|
||||
;; ((#:phases phases)
|
||||
;; #~(modify-phases #$phases
|
||||
;; (add-after 'install 'ovmf
|
||||
;; (lambda _
|
||||
;; (let ((fmw (string-append #$output "/usr/share/OVMF")))
|
||||
;; (mkdir-p fmw)
|
||||
;; (copy-recursively #$(file-append ovmf-new "/share/firmware") fmw))
|
||||
;; ))
|
||||
;; ))))))
|
||||
|
||||
;; (define-public virt-manager-new
|
||||
;; (package
|
||||
;; (inherit virt-manager)
|
||||
;; (name "virt-manager-new")
|
||||
;; (arguments
|
||||
;; (substitute-keyword-arguments (package-arguments virt-manager)
|
||||
;; ((#:phases phases)
|
||||
;; #~(modify-phases #$phases
|
||||
;; (add-after 'install 'ovmf
|
||||
;; (lambda _
|
||||
;; (let ((fmw (string-append #$output "/usr/share/OVMF")))
|
||||
;; (mkdir-p fmw)
|
||||
;; (copy-recursively #$(file-append ovmf-new "/share/firmware") fmw)
|
||||
;; )))
|
||||
;; ))))))
|
||||
|
|
Loading…
Reference in a new issue