summaryrefslogtreecommitdiff
path: root/mini
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-05-30 19:08:19 +0200
committerChristoph Cullmann <cullmann@kde.org>2024-05-30 19:08:19 +0200
commit3ac6cd9dc19ab3f9cf84cb846eee8fc53febcc3d (patch)
tree2daa5211f9913655e719944e41bf524d1e550554 /mini
parent1ffc7dbdf89a83fa5f00e9075c71e3d3972815b9 (diff)
add vms filesystem
Diffstat (limited to 'mini')
-rw-r--r--mini/hardware-configuration.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/mini/hardware-configuration.nix b/mini/hardware-configuration.nix
index 9be483a..bd59f3a 100644
--- a/mini/hardware-configuration.nix
+++ b/mini/hardware-configuration.nix
@@ -19,16 +19,13 @@
fsType = "vfat";
neededForBoot = true;
};
-/*
+
# vms
- boot.initrd.luks.devices."crypt-vms".device = "/dev/disk/by-id/ata-CT2000MX500SSD1_2138E5D5061F";
fileSystems."/home/cullmann/vms" =
- { device = "/dev/mapper/crypt-vms";
- fsType = "btrfs";
- neededForBoot = true;
- options = [ "noatime" "nodiratime" ];
+ { device = "vpool/vms";
+ fsType = "zfs";
depends = [ "/home" ];
- };*/
+ };
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;