11 lines
202 B
Nix
11 lines
202 B
Nix
{ config, ... }:
|
|
{
|
|
fileSystems."/mnt/Games" = {
|
|
device = "/dev/disk/by-uuid/a026c6c7-04a0-4f34-82bb-ea7e4f3e85c5";
|
|
fsType = "ext4";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
];
|
|
};
|
|
}
|