Add a new mount
This commit is contained in:
parent
4d994c5ca0
commit
b23caa238e
2 changed files with 12 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
|||
{
|
||||
fileSystems = {
|
||||
# Secondary drive
|
||||
"/mnt/Games" = {
|
||||
"/persist/storage" = {
|
||||
device = "/dev/disk/by-uuid/135281e2-72ec-4c00-91e8-9897a32c02ce";
|
||||
fsType = "btrfs";
|
||||
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
|
||||
|
|
|
@ -1,8 +1,15 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
fileSystems."/home/${config.sysusers.main}/Midas" = {
|
||||
fileSystems = {
|
||||
"/persist/storage" = {
|
||||
device = "/dev/disk/by-uuid/edd3e293-1aff-4fc0-96fa-4e17d6cccfca";
|
||||
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" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue