Update system/macmini/hardware-configuration.nix

This commit is contained in:
batvin321 2024-11-19 14:01:55 -05:00
parent 375470c7aa
commit 50cbfe9c82

View File

@ -16,7 +16,7 @@
fileSystems."/" = fileSystems."/" =
{ device = "/dev/sda2"; { device = "/dev/sda2";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=root" "compress=zstd" "noatime" ]; options = [ "subvol=root" ];
}; };
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/8c7cfd8b-9b49-4f86-8019-3d4614920c19"; boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/8c7cfd8b-9b49-4f86-8019-3d4614920c19";
@ -30,25 +30,25 @@
fileSystems."/home" = fileSystems."/home" =
{ device = "/dev/sda2"; { device = "/dev/sda2";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=home" "compress=zstd" "noatime" ]; options = [ "subvol=home" ];
}; };
fileSystems."/nix" = fileSystems."/nix" =
{ device = "/dev/sda2"; { device = "/dev/sda2";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=nix" "compress=zstd" "noatime" ]; options = [ "subvol=nix" ];
}; };
fileSystems."/persist" = fileSystems."/persist" =
{ device = "/dev/sda2"; { device = "/dev/sda2";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=persist" "compress=zstd" "noatime" ]; options = [ "subvol=persist" ];
}; };
fileSystems."/var/log" = fileSystems."/var/log" =
{ device = "/dev/sda2"; { device = "/dev/sda2";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=log" "compress=zstd" "noatime" ]; options = [ "subvol=log" ];
}; };
swapDevices = [ ]; swapDevices = [ ];