diff --git a/hosts/desktop.nix b/hosts/desktop.nix index 833eee9..0079e07 100644 --- a/hosts/desktop.nix +++ b/hosts/desktop.nix @@ -12,13 +12,6 @@ nvidiaSettings = true; }; - boot.initrd.luks.devices = { - root = { - device = "/dev/sda1"; - preLVM = true; - }; - }; - # Dual display configuration services.xserver = { screenSection = '' diff --git a/hosts/laptop.nix b/hosts/laptop.nix index d4c7a2e..629e3c1 100644 --- a/hosts/laptop.nix +++ b/hosts/laptop.nix @@ -13,12 +13,5 @@ ]; }; - boot.initrd.luks.devices = { - root = { - device = "/dev/sda1"; - preLVM = true; - }; - }; - services.xserver.videoDrivers = [ "intel" ]; } diff --git a/hosts/vm.nix b/hosts/vm.nix index 1a7b2f8..9b036be 100644 --- a/hosts/vm.nix +++ b/hosts/vm.nix @@ -6,14 +6,6 @@ # Use DHCP for networking networking.useDHCP = true; - # Disk encryption setup - boot.initrd.luks.devices = { - root = { - device = "/dev/sda1"; - preLVM = true; - }; - }; - # Hyprland setup without GPU acceleration services.xserver.enable = true; services.xserver.videoDrivers = [ ];