mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-08 18:33:52 +00:00
23 lines
444 B
Nix
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;
|
||
|
};
|
||
|
};
|
||
|
}
|