Auto-mount btrfs root on voyager

This commit is contained in:
ItsDrike 2024-06-23 09:52:18 +02:00
parent 17b444cda1
commit 5ebc43b05a
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -46,6 +46,12 @@
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/.btrfs" =
{ device = "/dev/disk/by-label/NIXOS-FS";
fsType = "btrfs";
options = [ "noatime" "compress=zstd:3" ];
};
swapDevices =
[ { device = "/dev/disk/by-label/SWAP"; }
];