Update state version home manager, and update hardware for wheatley

This commit is contained in:
Lillian Violet 2024-12-03 14:46:55 +01:00
parent 2ebbd70657
commit ca7785c04b
2 changed files with 4 additions and 4 deletions

View file

@ -35,5 +35,5 @@
};
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "24.05";
home.stateVersion = "25.05";
}

View file

@ -1,18 +1,18 @@
{
fileSystems."/boot" = {
device = "/dev/disk/by-label/BOOT";
device = "/dev/disk/by-path/platform-fe340000.mmc-part1";
fsType = "vfat";
};
fileSystems."/" = {
device = "/dev/disk/by-label/NIXOS";
device = "/dev/disk/by-path/platform-fe340000.mmc-part3";
fsType = "ext4";
options = ["noatime"];
};
swapDevices = [
{
device = "/dev/disk/by-id/mmc-USD00_0x66b39865-part2";
device = "/dev/disk/by-path/platform-fe340000.mmc-part2";
}
];
}