Add a new mount

This commit is contained in:
Bun 2025-03-21 21:14:26 -04:00
parent 4d994c5ca0
commit b23caa238e
2 changed files with 12 additions and 5 deletions

View file

@ -2,7 +2,7 @@
{ {
fileSystems = { fileSystems = {
# Secondary drive # Secondary drive
"/mnt/Games" = { "/persist/storage" = {
device = "/dev/disk/by-uuid/135281e2-72ec-4c00-91e8-9897a32c02ce"; device = "/dev/disk/by-uuid/135281e2-72ec-4c00-91e8-9897a32c02ce";
fsType = "btrfs"; fsType = "btrfs";
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ]; options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];

View file

@ -1,8 +1,15 @@
{ config, ... }: { config, ... }:
{ {
fileSystems."/home/${config.sysusers.main}/Midas" = { fileSystems = {
device = "10.2.0.1:/"; "/persist/storage" = {
fsType = "nfs4"; device = "/dev/disk/by-uuid/edd3e293-1aff-4fc0-96fa-4e17d6cccfca";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ]; fsType = "btrfs";
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
};
"/home/${config.sysusers.main}/Midas" = {
device = "10.2.0.1:/";
fsType = "nfs4";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
};
}; };
} }