Move stuff to a new drive

This commit is contained in:
Natsu Kagami 2024-10-21 05:04:00 +02:00
parent 3e8dae05d1
commit 4a5fbf3d9c
Signed by: nki
GPG key ID: 55A032EB38B49ADB

View file

@ -9,9 +9,11 @@
swapDevices = [{ device = "/var/swapfile"; size = 4 * 1024; priority = 1024; }];
zramSwap.enable = true;
# volumes
fileSystems.data = {
device = "/dev/disk/by-id/scsi-0HC_Volume_31812942";
fsType = "ext4";
services.btrfs.autoScrub.enable = true;
fileSystems.nki-data = {
device = "/dev/disk/by-id/scsi-0HC_Volume_101470796";
fsType = "btrfs";
mountPoint = "/mnt/data";
options = [ "compress=zstd" ];
};
}