forked from Bun/nixos-config
18 lines
416 B
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;
|
|
};
|
|
}
|