buffer only 5 seconds
This commit is contained in:
parent
03e498dd28
commit
49339e517e
|
@ -78,7 +78,7 @@ in
|
||||||
fileSystems."/data" = {
|
fileSystems."/data" = {
|
||||||
device = "/dev/mapper/crypt-system";
|
device = "/dev/mapper/crypt-system";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=data" "noatime" "nodiscard" ];
|
options = [ "subvol=data" "noatime" "nodiscard" "commit=5" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ in
|
||||||
fileSystems."/nix" = {
|
fileSystems."/nix" = {
|
||||||
device = "/dev/mapper/crypt-system";
|
device = "/dev/mapper/crypt-system";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=nix" "noatime" "nodiscard" ];
|
options = [ "subvol=nix" "noatime" "nodiscard" "commit=5" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@ in
|
||||||
fileSystems."/tmp" = {
|
fileSystems."/tmp" = {
|
||||||
device = "/dev/mapper/crypt-system";
|
device = "/dev/mapper/crypt-system";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=tmp" "noatime" "nodiscard" ];
|
options = [ "subvol=tmp" "noatime" "nodiscard" "commit=5" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue