reinstall guix vm
This commit is contained in:
parent
cd89555b45
commit
96e1918a27
1 changed files with 13 additions and 11 deletions
|
@ -37,10 +37,10 @@ EndSection
|
||||||
(locale "en_GB.utf8")
|
(locale "en_GB.utf8")
|
||||||
(timezone "Europe/London")
|
(timezone "Europe/London")
|
||||||
(keyboard-layout (keyboard-layout "pl"))
|
(keyboard-layout (keyboard-layout "pl"))
|
||||||
(host-name "guixvm")
|
(host-name "guix")
|
||||||
(users (cons* (user-account
|
(users (cons* (user-account
|
||||||
(name "cyryl")
|
(name "cyryl")
|
||||||
(comment "")
|
(comment "Cyryl")
|
||||||
(group "users")
|
(group "users")
|
||||||
(home-directory "/home/cyryl")
|
(home-directory "/home/cyryl")
|
||||||
(supplementary-groups
|
(supplementary-groups
|
||||||
|
@ -53,10 +53,9 @@ EndSection
|
||||||
(specification->package "dmenu")
|
(specification->package "dmenu")
|
||||||
(specification->package "st")
|
(specification->package "st")
|
||||||
(specification->package "nss-certs")
|
(specification->package "nss-certs")
|
||||||
git
|
|
||||||
icecat
|
git icecat vim openssh
|
||||||
vim
|
)
|
||||||
openssh)
|
|
||||||
%base-packages))
|
%base-packages))
|
||||||
(services
|
(services
|
||||||
(append
|
(append
|
||||||
|
@ -70,20 +69,23 @@ EndSection
|
||||||
%desktop-services))
|
%desktop-services))
|
||||||
(bootloader
|
(bootloader
|
||||||
(bootloader-configuration
|
(bootloader-configuration
|
||||||
(bootloader grub-bootloader)
|
(bootloader grub-efi-bootloader)
|
||||||
(target "/dev/sda")
|
(target "/boot/efi")
|
||||||
(keyboard-layout keyboard-layout)))
|
(keyboard-layout keyboard-layout)))
|
||||||
(mapped-devices
|
(mapped-devices
|
||||||
(list (mapped-device
|
(list (mapped-device
|
||||||
(source
|
(source
|
||||||
(uuid "a8ed265d-4156-460a-b6ac-3840101c9987"))
|
(uuid "3d2a3370-6ae8-453d-bb91-bd2929f013ee"))
|
||||||
(target "cryptroot")
|
(target "cryptroot")
|
||||||
(type luks-device-mapping))))
|
(type luks-device-mapping))))
|
||||||
(file-systems
|
(file-systems
|
||||||
(cons* (file-system
|
(cons* (file-system
|
||||||
|
(mount-point "/boot/efi")
|
||||||
|
(device (uuid "A62A-8C37" 'fat32))
|
||||||
|
(type "vfat"))
|
||||||
|
(file-system
|
||||||
(mount-point "/")
|
(mount-point "/")
|
||||||
(device "/dev/mapper/cryptroot")
|
(device "/dev/mapper/cryptroot")
|
||||||
(type "ext4")
|
(type "ext4")
|
||||||
(dependencies mapped-devices))
|
(dependencies mapped-devices))
|
||||||
%base-file-systems)))
|
%base-file-systems)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue