Add NFS mounts and update home-assistant

This commit is contained in:
Jacob Hinkle 2024-01-23 12:52:04 -05:00
parent f58dd6da01
commit 1e6833fe3c
2 changed files with 13 additions and 1 deletions

View File

@ -109,6 +109,18 @@
neededForBoot = true; neededForBoot = true;
}; };
fileSystems."/nfs/homes" =
{ device = "192.168.88.88:/volume1/homes";
fsType = "nfs";
neededForBoot = false;
};
fileSystems."/nfs/shared_photos" =
{ device = "192.168.88.88:/volume1/photo";
fsType = "nfs";
neededForBoot = false;
};
swapDevices = [ swapDevices = [
{ {
device = "/dev/disk/by-partuuid/6bf463d0-107f-489e-be29-704442ea3150"; device = "/dev/disk/by-partuuid/6bf463d0-107f-489e-be29-704442ea3150";

View File

@ -1,6 +1,6 @@
serverIP : serverIP :
{ {
image = "ghcr.io/home-assistant/home-assistant:2023.6.3"; image = "ghcr.io/home-assistant/home-assistant:2023.11.2";
#ports = [ #ports = [
#"8123:8123" #"8123:8123"
#]; #];