nixos-config/hosts/jupiter/filesystems/default.nix
2025-04-28 03:54:22 -04:00

11 lines
203 B
Nix

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