Update some of the ips I missed oopsies
This commit is contained in:
parent
48b55af695
commit
c1819b68a1
8 changed files with 10 additions and 45 deletions
|
@ -1,8 +1,9 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
fileSystems = {
|
||||
fileSystems = with config.services.mycelium.ips; {
|
||||
# Network mounts
|
||||
"/home/${config.sysusers.main}/Network/Midas" = {
|
||||
device = "10.2.0.1:/storage";
|
||||
device = "[${midas}]:/storage";
|
||||
fsType = "nfs4";
|
||||
options = [
|
||||
"noauto"
|
||||
|
@ -11,7 +12,7 @@
|
|||
];
|
||||
};
|
||||
"/home/${config.sysusers.main}/Network/Kitty" = {
|
||||
device = "10.2.0.2:/storage/bun";
|
||||
device = "[${kitty}]:/storage/bun";
|
||||
fsType = "nfs4";
|
||||
options = [
|
||||
"noauto"
|
||||
|
@ -20,7 +21,7 @@
|
|||
];
|
||||
};
|
||||
"/home/${config.sysusers.main}/Network/Prophet" = {
|
||||
device = "mx.nixfox.ca:/storage";
|
||||
device = "[${prophet}]:/storage";
|
||||
fsType = "nfs4";
|
||||
options = [
|
||||
"noauto"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue