summaryrefslogtreecommitdiff
path: root/mini
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-05-30 17:49:08 +0200
committerChristoph Cullmann <cullmann@kde.org>2024-05-30 17:49:08 +0200
commitc524de48f0749e1f885fdf3ec396d21cd687994f (patch)
treee7ce77056e8aab2567c6040f856ccbbbceb1a504 /mini
parent53c2aa972f3284e54b9a75fde4737e0bf6175a51 (diff)
prepare for zfs
Diffstat (limited to 'mini')
-rw-r--r--mini/hardware-configuration.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/mini/hardware-configuration.nix b/mini/hardware-configuration.nix
index 68bfb4b..9be483a 100644
--- a/mini/hardware-configuration.nix
+++ b/mini/hardware-configuration.nix
@@ -13,16 +13,13 @@
# don't check for split locks, for KVM and Co.
boot.kernelParams = [ "split_lock_detect=off" ];
- # system
- boot.initrd.luks.devices."crypt-system".device = "/dev/disk/by-id/nvme-CT4000P3PSSD8_2325E6E63746-part2";
-
# efi partition
fileSystems."/boot" =
{ device = "/dev/disk/by-id/nvme-CT4000P3PSSD8_2325E6E63746-part1";
fsType = "vfat";
neededForBoot = true;
};
-
+/*
# vms
boot.initrd.luks.devices."crypt-vms".device = "/dev/disk/by-id/ata-CT2000MX500SSD1_2138E5D5061F";
fileSystems."/home/cullmann/vms" =
@@ -31,7 +28,7 @@
neededForBoot = true;
options = [ "noatime" "nodiratime" ];
depends = [ "/home" ];
- };
+ };*/
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;