hosts/Infini-FRAMEWORK: specify SSD option in filesystems
This commit is contained in:
parent
87abd0f5b3
commit
ded3aa8e59
1 changed files with 3 additions and 3 deletions
|
@ -26,21 +26,21 @@ in
|
||||||
"/persist" = {
|
"/persist" = {
|
||||||
device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9";
|
device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=root" "autodefrag" "noatime" ];
|
options = [ "subvol=root" "autodefrag" "noatime" "ssd" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
"/nix" = {
|
"/nix" = {
|
||||||
device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9";
|
device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=nix" "autodefrag" "noatime" ];
|
options = [ "subvol=nix" "autodefrag" "noatime" "ssd" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9";
|
device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=boot" "autodefrag" "noatime" ];
|
options = [ "subvol=boot" "autodefrag" "noatime" "ssd" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue