nixos/home/hass: Initial Home Assistant setup
Some checks failed
CI / Check, build and cache nixfiles (push) Has been cancelled

This commit is contained in:
2025-03-09 22:59:59 +00:00
parent a3870a4293
commit adfcf2f848
4 changed files with 118 additions and 5 deletions

View File

@@ -561,6 +561,16 @@ in
}
];
})
(mkIf config.services.home-assistant.enable {
my.tmproot.persistence.config.directories = [
{
directory = config.services.home-assistant.configDir;
mode = "0750";
user = "hass";
group = "hass";
}
];
})
]))
]);