1
0
Fork 0
forked from Bun/nixos-config
nixos-config/hosts/jupiter/filesystems/default.nix

18 lines
416 B
Nix

{ config, ... }:
{
fileSystems = {
"/mnt/Games" = {
device = "/dev/disk/by-uuid/cb109a85-846d-4417-9c50-a2279bd20803";
fsType = "btrfs";
options = [
"nofail"
"nosuid"
];
};
# Network mounts
"kitty".enable = !config.system.steamdeck.enable;
"midas".enable = !config.system.steamdeck.enable;
"prophet".enable = !config.system.steamdeck.enable;
};
}