forked from foxora/nix
12 lines
277 B
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";
|
|
}
|