From 96e1918a270358a7df2a5ab9bceef55ea8eabf5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 14 Aug 2022 00:06:35 +0100 Subject: [PATCH] reinstall guix vm --- guix/vm/config.scm | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/guix/vm/config.scm b/guix/vm/config.scm index ccd07e19..597402ef 100644 --- a/guix/vm/config.scm +++ b/guix/vm/config.scm @@ -37,10 +37,10 @@ EndSection (locale "en_GB.utf8") (timezone "Europe/London") (keyboard-layout (keyboard-layout "pl")) - (host-name "guixvm") + (host-name "guix") (users (cons* (user-account (name "cyryl") - (comment "") + (comment "Cyryl") (group "users") (home-directory "/home/cyryl") (supplementary-groups @@ -53,10 +53,9 @@ EndSection (specification->package "dmenu") (specification->package "st") (specification->package "nss-certs") - git - icecat - vim - openssh) + +git icecat vim openssh +) %base-packages)) (services (append @@ -68,22 +67,25 @@ EndSection (extra-config (list %xorg-libinput-config)))) ) %desktop-services)) - (bootloader + (bootloader (bootloader-configuration - (bootloader grub-bootloader) - (target "/dev/sda") + (bootloader grub-efi-bootloader) + (target "/boot/efi") (keyboard-layout keyboard-layout))) (mapped-devices (list (mapped-device (source - (uuid "a8ed265d-4156-460a-b6ac-3840101c9987")) + (uuid "3d2a3370-6ae8-453d-bb91-bd2929f013ee")) (target "cryptroot") (type luks-device-mapping)))) (file-systems (cons* (file-system + (mount-point "/boot/efi") + (device (uuid "A62A-8C37" 'fat32)) + (type "vfat")) + (file-system (mount-point "/") (device "/dev/mapper/cryptroot") (type "ext4") (dependencies mapped-devices)) %base-file-systems))) -