change hardware config for wheatley to be more correct

This commit is contained in:
Lillian Violet 2024-12-03 00:28:51 +01:00
parent ef6fd0bafd
commit 526097d53b

View file

@ -12,15 +12,12 @@
fileSystems."/nix" = {
device = "/dev/disk/by-label/NIXOS";
fsType = "btrfs";
options = ["compress=zstd"];
fsType = "ext4";
options = [];
};
fileSystems."/swap" = {
device = "/dev/disk/by-label/NIXOS";
fsType = "btrfs";
options = ["noatime" "subvol=swap"];
swapDevices = {
device = "/dev/disk/by-id/mmc-USD00_0x66b39865-part2";
fsType = "linux-swap";
};
swapDevices = [{device = "/swap/swapfile";}];
}