reinstall guix vm

This commit is contained in:
Cyryl Płotnicki 2022-08-14 00:06:35 +01:00
parent cd89555b45
commit 96e1918a27
1 changed files with 13 additions and 11 deletions

View File

@ -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)))