add vms backup
This commit is contained in:
parent
f90169dc78
commit
b0c5f1e67e
|
@ -24,8 +24,12 @@
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# system
|
||||||
boot.initrd.luks.devices."crypt-system".device = "/dev/disk/by-uuid/22c208e6-579b-4d34-8f83-83aa4a7ab1c3";
|
boot.initrd.luks.devices."crypt-system".device = "/dev/disk/by-uuid/22c208e6-579b-4d34-8f83-83aa4a7ab1c3";
|
||||||
|
|
||||||
|
# vms
|
||||||
|
boot.initrd.luks.devices."crypt-vms".device = "/dev/disk/by-id/ata-CT2000MX500SSD1_2138E5D5061F";
|
||||||
|
|
||||||
fileSystems."/nix" =
|
fileSystems."/nix" =
|
||||||
{ device = "/dev/mapper/crypt-system";
|
{ device = "/dev/mapper/crypt-system";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
|
@ -56,6 +60,14 @@
|
||||||
options = [ "bind" ];
|
options = [ "bind" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/home/cullmann/vms" =
|
||||||
|
{
|
||||||
|
depends = [ "/home" ];
|
||||||
|
device = "/dev/mapper/crypt-vms";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "noatime" "nodiratime" ];
|
||||||
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|
|
@ -100,3 +100,33 @@ nixos-install --no-root-passwd --root /mnt
|
||||||
|
|
||||||
umount -Rl /mnt
|
umount -Rl /mnt
|
||||||
cryptsetup luksClose crypt-system
|
cryptsetup luksClose crypt-system
|
||||||
|
|
||||||
|
#
|
||||||
|
# after install tasks for extra file systems
|
||||||
|
#
|
||||||
|
|
||||||
|
# create vms disk
|
||||||
|
|
||||||
|
DD=/dev/disk/by-id/ata-CT2000MX500SSD1_2138E5D5061F
|
||||||
|
sgdisk --zap-all $DD
|
||||||
|
blkdiscard -v $DD
|
||||||
|
wipefs -a $DD
|
||||||
|
|
||||||
|
sleep 5
|
||||||
|
|
||||||
|
# create the crypto containers
|
||||||
|
cryptsetup luksFormat --batch-mode --verify-passphrase $DD
|
||||||
|
|
||||||
|
sleep 5
|
||||||
|
|
||||||
|
# open them, set right options persistently
|
||||||
|
cryptsetup luksOpen --allow-discards --perf-no_read_workqueue --perf-no_write_workqueue --persistent $DD crypt-vms
|
||||||
|
|
||||||
|
sleep 5
|
||||||
|
lsblk --fs
|
||||||
|
|
||||||
|
# create btrfs with fast & strong checksumming and fast mounting
|
||||||
|
mkfs.btrfs -f --csum xxhash --features block-group-tree /dev/mapper/crypt-vms
|
||||||
|
|
||||||
|
sleep 5
|
||||||
|
btrfs filesystem show
|
||||||
|
|
Loading…
Reference in a new issue