Add new Ranger shortcut and standardize mounts on Intuos

This commit is contained in:
Bun 2025-04-16 18:01:19 -04:00
parent 41b88911bc
commit 4ec991aae6
3 changed files with 8 additions and 2 deletions

View file

@ -1,8 +1,13 @@
{ config, ... }:
{
fileSystems."/home/${config.sysusers.main}/Midas" = {
fileSystems."/home/${config.sysusers.main}/Network/Midas" = {
device = "11.0.0.1:/";
fsType = "nfs4";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
};
fileSystems."/home/${config.sysusers.main}/Network/Kitty" = {
device = "11.0.0.2:/";
fsType = "nfs4";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
};
}

View file

@ -6,7 +6,7 @@
fsType = "btrfs";
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
};
"/home/${config.sysusers.main}/Midas" = {
"/home/${config.sysusers.main}/Network/Midas" = {
device = "11.0.0.1:/storage";
fsType = "nfs4";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];