1
0
Fork 0
forked from foxora/nix
flake-foxora/vms/home-assistant/default.nix

12 lines
277 B
Nix

{ config, lib, pkgs, ... }:
{
services.home-assistant = {
enable = true;
configDir = "/var/lib/hass";
# disables config generation, i don't wanna configure home assistant
# through nix at the moment
config = null;
};
system.stateVersion = "25.11";
}