nixos-config/hosts/jupiter/filesystems/default.nix
2025-06-06 14:54:14 -04:00

13 lines
230 B
Nix

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