summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-08-28 10:13:50 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-08-28 10:33:52 +0200
commit8726465b61b17c03353690a309cb0a98ba3a35dc (patch)
treeb45c17a0cff24262a817dddcf735f1fcea595113 /systems
parent69920bf89d9a978f91cc1a3406df548671230130 (diff)
feat(ayase): install virtualization
Diffstat (limited to 'systems')
-rw-r--r--systems/ayase.scm14
1 files changed, 11 insertions, 3 deletions
diff --git a/systems/ayase.scm b/systems/ayase.scm
index 58b39f7..d1972a3 100644
--- a/systems/ayase.scm
+++ b/systems/ayase.scm
@@ -2,6 +2,9 @@
;; uuid
#:use-module (gnu)
+ ;; gnome-boxes
+ #:use-module (gnu packages gnome)
+
;; pinentry-qt
;; pinentry-tty
#:use-module (gnu packages gnupg)
@@ -23,6 +26,9 @@
;; openssh-service-type
#:use-module (gnu services ssh)
+ ;; libvirt-service-type
+ #:use-module (gnu services virtualization)
+
;; uid1000-account
;; uid1000-home-environment
;; uid1000-name
@@ -49,7 +55,7 @@
(define users*
(list uid1000-account))
-;; record operating-system
+;; record* operating-system
(define-public operating-system*
(let* ((bootloader-targets (list "/boot/efi"))
(efi-filesystem-id (uuid "B4FB-CBD9" 'fat32))
@@ -71,11 +77,13 @@
(home-services (list home-services))
(keyboard-layout (keyboard-layout "pl"))
(main-swap (swap-space (target swap-space-id)))
- (system-services (list (service openssh-service-type)
+ (system-services (list (service libvirt-service-type)
+ (service openssh-service-type)
(service tor-service-type)
(simple-service 'system-packages
profile-service-type
- (list kgpg
+ (list gnome-boxes
+ kgpg
pinentry-qt
pinentry-tty))))