nixos-config/hosts/envy/filesystems/default.nix

24 lines
717 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" ];
};
2025-01-03 17:52:33 -05:00
"/persist/home/${config.sysusers.main}/.local/share/Steam" = {
2024-12-20 03:20:05 -05:00
device = "/dev/disk/by-uuid/135281e2-72ec-4c00-91e8-9897a32c02ce";
fsType = "btrfs";
options = [ "subvol=Steam" "nosuid" "nodev" "nofail" "x-gvfs-show" ];
};
2024-12-18 23:06:57 -05:00
2024-12-16 12:11:12 -05:00
# Network mounts
2025-01-03 18:03:43 -05:00
"/home/${config.sysusers.main}/KittyNFS" = {
device = "10.100.0.1:/export/KittyNFS";
2024-12-16 12:11:12 -05:00
fsType = "nfs4";
options = [ "x-systemd.automount" "_netdev" "nofail" "noauto" ];
};
};
}