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,6 +1,6 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
fileSystems = {
|
||||
fileSystems = with config.services.mycelium.ips; {
|
||||
"/persist/storage" = {
|
||||
device = "/dev/disk/by-uuid/d0d6783f-ad51-4d85-b8a9-3374f6460ef6";
|
||||
fsType = "btrfs";
|
||||
|
@ -22,30 +22,27 @@
|
|||
|
||||
# Network mounts
|
||||
"/home/${config.sysusers.main}/Network/Midas" = {
|
||||
device = "10.2.0.1:/storage";
|
||||
device = "[${midas}]:/storage";
|
||||
fsType = "nfs4";
|
||||
options = [
|
||||
"noatime"
|
||||
"noauto"
|
||||
"soft"
|
||||
"x-systemd.automount"
|
||||
];
|
||||
};
|
||||
"/home/${config.sysusers.main}/Network/Kitty" = {
|
||||
device = "10.2.0.2:/storage/bun";
|
||||
device = "[${kitty}]:/storage/bun";
|
||||
fsType = "nfs4";
|
||||
options = [
|
||||
"noatime"
|
||||
"noauto"
|
||||
"soft"
|
||||
"x-systemd.automount"
|
||||
];
|
||||
};
|
||||
"/home/${config.sysusers.main}/Network/Prophet" = {
|
||||
device = "mx.nixfox.ca:/storage";
|
||||
device = "[${prophet}]:/storage";
|
||||
fsType = "nfs4";
|
||||
options = [
|
||||
"noatime"
|
||||
"noauto"
|
||||
"soft"
|
||||
"x-systemd.automount"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue