From 0f797c956f194ae4304cfc1cbe771318aa8c337e Mon Sep 17 00:00:00 2001 From: twoneis Date: Wed, 8 May 2024 22:43:33 +0200 Subject: [PATCH] removed more unnecessary stuff --- devices/ellaca/hardware-config.nix | 9 --------- 1 file changed, 9 deletions(-) diff --git a/devices/ellaca/hardware-config.nix b/devices/ellaca/hardware-config.nix index c29f1f6..854af52 100644 --- a/devices/ellaca/hardware-config.nix +++ b/devices/ellaca/hardware-config.nix @@ -11,7 +11,6 @@ fileSystems = { "/boot" = { device = "/dev/disk/by-uuid/7ABC-9C12"; - neededForBoot = true; fsType = "vfat"; }; "/" = { @@ -22,19 +21,11 @@ "/nix" = { device = "/dev/disk/by-uuid/b6e6bca7-1435-4b41-b174-8550eace7c32"; fsType = "btrfs"; - neededForBoot = true; options = [ "subvol=nix" "compress=zstd" "noatime" ]; }; - "/persist" = { - device = "/dev/disk/by-uuid/b6e6bca7-1435-4b41-b174-8550eace7c32"; - fsType = "btrfs"; - neededForBoot = true; - options = [ "subvol=persist" "compress=zstd" "noatime" ]; - }; "/ext" = { device = "/dev/disk/by-uuid/3ed92a26-775a-4e39-ac1c-84b2822cd3dd"; fsType = "btrfs"; - neededForBoot = true; options = [ "subvol=ext" "compress=zstd" "noatime" ]; }; };