From b0c5f1e67e5c352d2dbe43eaf136d49a086cd33f Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Sun, 17 Sep 2023 00:23:47 +0200 Subject: add vms backup --- mini/hardware-configuration.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'mini/hardware-configuration.nix') diff --git a/mini/hardware-configuration.nix b/mini/hardware-configuration.nix index ff2b0f9..2949b75 100644 --- a/mini/hardware-configuration.nix +++ b/mini/hardware-configuration.nix @@ -24,8 +24,12 @@ fsType = "vfat"; }; + # system 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" = { device = "/dev/mapper/crypt-system"; fsType = "btrfs"; @@ -56,6 +60,14 @@ options = [ "bind" ]; }; + fileSystems."/home/cullmann/vms" = + { + depends = [ "/home" ]; + device = "/dev/mapper/crypt-vms"; + fsType = "btrfs"; + options = [ "noatime" "nodiratime" ]; + }; + swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; -- cgit v1.2.3