buffer only 5 seconds

This commit is contained in:
Christoph Cullmann 2024-11-04 21:09:22 +01:00
parent 03e498dd28
commit 49339e517e
No known key found for this signature in database

View file

@ -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;
}; };