Add new Ranger shortcut and standardize mounts on Intuos
This commit is contained in:
parent
41b88911bc
commit
4ec991aae6
3 changed files with 8 additions and 2 deletions
|
@ -1,8 +1,13 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
fileSystems."/home/${config.sysusers.main}/Midas" = {
|
fileSystems."/home/${config.sysusers.main}/Network/Midas" = {
|
||||||
device = "11.0.0.1:/";
|
device = "11.0.0.1:/";
|
||||||
fsType = "nfs4";
|
fsType = "nfs4";
|
||||||
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
|
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" ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
|
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
|
||||||
};
|
};
|
||||||
"/home/${config.sysusers.main}/Midas" = {
|
"/home/${config.sysusers.main}/Network/Midas" = {
|
||||||
device = "11.0.0.1:/storage";
|
device = "11.0.0.1:/storage";
|
||||||
fsType = "nfs4";
|
fsType = "nfs4";
|
||||||
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
|
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
|
||||||
|
|
|
@ -107,6 +107,7 @@
|
||||||
n:/etc/nixos
|
n:/etc/nixos
|
||||||
|
|
||||||
# Remote files
|
# Remote files
|
||||||
|
N:/home/${config.home.username}/Network
|
||||||
H:/home/${config.home.username}/Network/Midas/
|
H:/home/${config.home.username}/Network/Midas/
|
||||||
K:/home/${config.home.username}/Network/Midas/Files
|
K:/home/${config.home.username}/Network/Midas/Files
|
||||||
M:/home/${config.home.username}/Network/Midas/Music
|
M:/home/${config.home.username}/Network/Midas/Music
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue