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" = { fileSystems."/nix" = {
device = "/dev/disk/by-label/NIXOS"; device = "/dev/disk/by-label/NIXOS";
fsType = "btrfs"; fsType = "ext4";
options = ["compress=zstd"]; options = [];
}; };
fileSystems."/swap" = { swapDevices = {
device = "/dev/disk/by-label/NIXOS"; device = "/dev/disk/by-id/mmc-USD00_0x66b39865-part2";
fsType = "btrfs"; fsType = "linux-swap";
options = ["noatime" "subvol=swap"];
}; };
swapDevices = [{device = "/swap/swapfile";}];
} }