1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-08 18:33:52 +00:00
ultima/jetpure/host/parts/disks.nix

23 lines
444 B
Nix
Raw Normal View History

2024-12-20 13:10:11 +00:00
{
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;
};
};
}