NixOS-Config/hosts/envy/filesystems/default.nix

19 lines
452 B
Nix
Raw Normal View History

2024-12-16 12:11:12 -05:00
{ config, ... }:
{
fileSystems = {
2024-12-18 23:06:57 -05:00
# Secondary drive
"/mnt/Games" = {
device = "/dev/disk/by-uuid/135281e2-72ec-4c00-91e8-9897a32c02ce";
fsType = "btrfs";
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
};
2024-12-16 12:11:12 -05:00
# Network mounts
"/home/jimbo/JimboNFS" = {
device = "10.100.0.1:/export/JimboNFS";
fsType = "nfs4";
options = [ "x-systemd.automount" "_netdev" "nofail" "noauto" ];
};
};
}