diff --git a/hosts/Infini-DESKTOP/hardware-configuration.nix b/hosts/Infini-DESKTOP/hardware-configuration.nix index 622596b..42b8692 100644 --- a/hosts/Infini-DESKTOP/hardware-configuration.nix +++ b/hosts/Infini-DESKTOP/hardware-configuration.nix @@ -37,6 +37,12 @@ in neededForBoot = true; }; + "/media/main" = { + device = main; + fsType = "btrfs"; + options = [ "autodefrag" "noatime" "ssd" ]; + }; + "/nix" = { device = main; fsType = "btrfs"; diff --git a/hosts/Infini-FRAMEWORK/hardware-configuration.nix b/hosts/Infini-FRAMEWORK/hardware-configuration.nix index 2f827ad..0b3cf0e 100644 --- a/hosts/Infini-FRAMEWORK/hardware-configuration.nix +++ b/hosts/Infini-FRAMEWORK/hardware-configuration.nix @@ -34,6 +34,12 @@ in neededForBoot = true; }; + "/media/main" = { + device = main; + fsType = "btrfs"; + options = [ "autodefrag" "noatime" "ssd" ]; + }; + "/nix" = { device = main; fsType = "btrfs";