1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-07 22:13:52 +00:00
ultima/jetpure/host/parts/disks.nix
2024-12-27 23:10:04 +09:00

23 lines
444 B
Nix

{
fileSystems =
let
fsType = "ext4";
options = [
"nosuid"
"nodev"
"nofail"
"x-gvfs-show"
];
in
{
"/mnt/HDD" = {
device = "/dev/disk/by-uuid/9290bc08-17fe-47db-a535-d4044b8c8dfb";
inherit fsType options;
};
"/mnt/SSD" = {
device = "/dev/disk/by-uuid/e6bc9034-95a4-43bd-b5f5-c7c1743e9f7c";
inherit fsType options;
};
};
}