dotfiles/systems/eris/config/filesystem.nix

19 lines
368 B
Nix
Raw Normal View History

2025-10-24 18:20:56 -05:00
{
fileSystems = {
"/" = {
2025-10-24 20:52:04 -05:00
device = "/dev/disk/by-uuid/df2d42e7-e91c-4525-a8d9-80aa0897b1be";
2025-10-24 18:20:56 -05:00
fsType = "ext4";
};
"/boot" = {
2025-10-24 20:52:04 -05:00
device = "/dev/disk/by-uuid/B645-7527";
2025-10-24 18:20:56 -05:00
fsType = "vfat";
};
};
swapDevices = [
2025-10-24 20:52:04 -05:00
{ device = "/dev/disk/by-uuid/9a2e032d-8627-49cf-8f3f-8fdf2be5fed4"; }
2025-10-24 18:20:56 -05:00
];
services.udisks2.enable = true;
}