11 lines
203 B
Nix
11 lines
203 B
Nix
{ config, ... }:
|
|
{
|
|
fileSystems."/mnt/Games" = {
|
|
device = "/dev/disk/by-uuid/cb109a85-846d-4417-9c50-a2279bd20803";
|
|
fsType = "btrfs";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
];
|
|
};
|
|
}
|