Skip to content

Commit

Permalink
Mount stuff with compression enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukagami committed Jan 20, 2024
1 parent bc0cea6 commit 5cf73ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nki-framework/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
device = "/dev/disk/by-uuid/fa8aaf51-b99f-4fb4-9230-8c0957d8af3f";
fsType = "btrfs";
options = [ "subvol=root" ];
options = [ "subvol=root" "compress=zstd" ];
};
services.btrfs.autoScrub = {
enable = true;
Expand All @@ -31,14 +31,14 @@
{
device = "/dev/disk/by-uuid/fa8aaf51-b99f-4fb4-9230-8c0957d8af3f";
fsType = "btrfs";
options = [ "subvol=home" ];
options = [ "subvol=home" "compress=zstd" ];
};

fileSystems."/nix" =
{
device = "/dev/disk/by-uuid/fa8aaf51-b99f-4fb4-9230-8c0957d8af3f";
fsType = "btrfs";
options = [ "subvol=nix" ];
options = [ "subvol=nix" "compress=zstd" ];
};

fileSystems."/boot" =
Expand Down

0 comments on commit 5cf73ba

Please sign in to comment.