dotfiles/systems/eris/config/filesystem.nix
2025-10-24 18:20:56 -05:00

18 lines
368 B
Nix
Executable file

{
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/de4e681b-0667-4bf8-8d6e-c50894aa41cd";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/C68D-B1C0";
fsType = "vfat";
};
};
swapDevices = [
{ device = "/dev/disk/by-uuid/259fcc06-912c-4bd3-b781-8f77449e935a"; }
];
services.udisks2.enable = true;
}