From d21fafc4efd2d1d3c673d813d854d8700cf995b3 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 12 Dec 2024 21:42:30 +0000 Subject: [PATCH] Remove encrypted disk configuration This is causing issues on startup which I don't have time to look into right now. --- nix/hosts/lemp11/configuration.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/nix/hosts/lemp11/configuration.nix b/nix/hosts/lemp11/configuration.nix index 279d817..f0e9364 100644 --- a/nix/hosts/lemp11/configuration.nix +++ b/nix/hosts/lemp11/configuration.nix @@ -318,16 +318,4 @@ KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0660", GROUP="users", TAG+="uaccess", TAG+="udev-acl" ''; }; - - fileSystems."/media" = { - device = "/dev/mapper/media"; - fsType = "ext4"; - options = [ "defaults" ]; - neededForBoot = false; - }; - - boot.initrd.luks.devices.secure_drive = { - device = "/dev/disk/by-uuid/debb07aa-4c3e-420c-852a-d4f3c417d27f"; - preLVM = true; - }; }