temperance: add filesystem options

This commit is contained in:
Charlie Root 2024-09-20 22:55:26 +02:00
commit 45f94f09df
2 changed files with 8 additions and 28 deletions

View file

@ -1,9 +1,9 @@
{
config = {
boot.initrd.luks.devices."cryptroot".device = "/dev/disk-by-uuid/";
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/96e8f3d6-8d2d-4e2d-abd9-3eb7f48fed02";
fileSystems = {
"/boot" = {
device = "";
device = "7825-451F";
fsType = "vfat";
};
# root on tmpfs
@ -13,23 +13,24 @@
options = ["defaults" "size=25%" "mode=755"];
};
"/nix" = {
device = "";
device = "/dev/disk/by-uuid/f0569993-722e-4721-b0d9-8ac537a7a548";
fsType = "btrfs";
options = ["subvol=nix" "compress=zstd" "noatime"];
};
"/persist" = {
device = "";
device = "/dev/disk/by-uuid/f0569993-722e-4721-b0d9-8ac537a7a548";
neededForBoot = true;
fsType = "btrfs";
options = ["subvol=persist" "compress=zstd" "noatime"];
};
"/home" = {
device = "";
device = "/dev/disk/by-uuid/f0569993-722e-4721-b0d9-8ac537a7a548";
fsType = "btrfs";
options = ["subvol=home" "compress=zstd" "noatime"];
};
"/swap" = {
device = "";
device = "/dev/disk/by-uuid/f0569993-722e-4721-b0d9-8ac537a7a548";
fsType = "btrfs";
options = ["subvol=swap" "compress=lzo" "noatime"];