Update all to mycelium ips

This commit is contained in:
Bun 2025-05-29 23:29:05 -04:00
parent 200bf7e711
commit 48b55af695
10 changed files with 40 additions and 29 deletions

View file

@ -1,6 +1,6 @@
{ config, ... }:
{
fileSystems = {
fileSystems = with config.services.mycelium.ips; {
"/persist/storage" = {
device = "/dev/disk/by-uuid/edd3e293-1aff-4fc0-96fa-4e17d6cccfca";
fsType = "btrfs";
@ -12,7 +12,7 @@
# Network mounts
"/home/${config.sysusers.main}/Network/Midas" = {
device = "11.0.0.1:/storage";
device = "[${midas}]:/storage";
fsType = "nfs4";
options = [
"x-systemd.automount"
@ -21,7 +21,7 @@
];
};
"/home/${config.sysusers.main}/Network/Prophet" = {
device = "mx.nixfox.ca:/storage";
device = "[${prophet}]:/storage";;
fsType = "nfs4";
options = [
"noauto"

View file

@ -1,6 +1,6 @@
{ ... }:
{ config, ... }:
{
fileSystems = {
fileSystems = with config.services.mycelium.ips; {
"/persist" = {
device = "/dev/disk/by-uuid/acf95700-8669-45c7-9a72-bf3215b3c325";
fsType = "btrfs";
@ -11,7 +11,7 @@
];
};
"/kitty" = {
device = "11.0.0.2:/storage/bun";
device = "[${kitty}]:/storage/bun";
fsType = "nfs4";
options = [
"noauto"

View file

@ -1,6 +1,6 @@
{ config, ... }:
{
fileSystems = {
fileSystems = with config.services.mycelium.ips; {
# Games and such
"/mnt/Linux1" = {
device = "/dev/disk/by-uuid/b2901f8c-ffda-4b88-bb63-a9ea0c96ccb4";
@ -40,7 +40,7 @@
# Network mounts
"/home/${config.sysusers.main}/Network/Midas" = {
device = "11.0.0.1:/storage";
device = "[${midas}]:/storage";
fsType = "nfs4";
options = [
"noauto"
@ -49,7 +49,7 @@
];
};
"/home/${config.sysusers.main}/Network/Kitty" = {
device = "11.0.0.2:/storage/bun";
device = "[${kitty}]:/storage/bun";
fsType = "nfs4";
options = [
"noauto"
@ -58,7 +58,7 @@
];
};
"/home/${config.sysusers.main}/Network/Prophet" = {
device = "mx.nixfox.ca:/storage";
device = "[${prophet}]:/storage";
fsType = "nfs4";
options = [
"noauto"