From f4dcee8aa31264ee75e66a7520ed67e2a1177f5d Mon Sep 17 00:00:00 2001 From: James Walker Date: Mon, 2 Aug 2021 12:17:27 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9A=20moving=20around=20configs=20agai?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/plato/configuration.nix | 5 ----- modules/home-assistant/default.nix | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/hosts/plato/configuration.nix b/hosts/plato/configuration.nix index 184cb40..d968245 100644 --- a/hosts/plato/configuration.nix +++ b/hosts/plato/configuration.nix @@ -50,11 +50,6 @@ in { system.autoUpgrade.enable = true; environment.systemPackages = with pkgs; [ weechat ]; - fileSystems."/mnt/config" = { - device = "192.168.6.100:/volume1/Config"; - fsType = "nfs"; - }; - fileSystems."/mnt/downloads" = { device = "192.168.6.100:/volume1/Downloads"; fsType = "nfs"; diff --git a/modules/home-assistant/default.nix b/modules/home-assistant/default.nix index 4228e43..dcfd0bb 100644 --- a/modules/home-assistant/default.nix +++ b/modules/home-assistant/default.nix @@ -7,7 +7,7 @@ home-assistant = { image = "ghcr.io/home-assistant/home-assistant:2021.7.4"; volumes = - [ "/mnt/config/hass:/config" "/etc/localtime:/etc/localtime:ro" ]; + [ "/var/lib/hass:/config" "/etc/localtime:/etc/localtime:ro" ]; extraOptions = [ "--privileged" "--network=host" ]; }; };