This commit is contained in:
mjallen18
2026-02-16 14:28:22 -06:00
parent c7a3aa6897
commit 2efe3fa067
10 changed files with 95 additions and 35 deletions

View File

@@ -369,6 +369,70 @@ in
];
};
};
conversation = {
intents = {
GetStatus = [
"What's the status of {entity}"
"Is {entity} {state}"
"How is the {entity}"
"What is the {sensor_type} in {location}"
];
ControlDevice = [
"Turn {state} {entity}"
"Set {entity} to {value}"
"Adjust {entity} to {value}"
"Make {entity} {value}"
"{state} {entity}"
];
ActivateScene = [
"Activate {scene}"
"Set scene to {scene}"
"I'm {activity}"
"We're {activity}"
"Time for {activity}"
];
RunAutomation = [
"Run {automation}"
"Start {automation}"
"Trigger {automation}"
"Execute {automation}"
];
HomeQuery = [
"When did {entity} last change"
"How long has {entity} been {state}"
"Which {domain} are {state}"
"Where is {person}"
];
SystemCommand = [
"Restart Home Assistant"
"Reload {component}"
"What version are you running"
"Are there any errors"
"System status"
];
};
# Entity aliases for better recognition
entity_aliases = {
light.living_room_lights = [
"living room light"
"living room lamp"
];
climate.thermostat = [
"thermostat"
"temperature"
"climate"
];
vacuum.garbage_goober = [
"vacuum"
"robot"
"cleaner"
];
light.bedroom_lights = [
"bedroom light"
"bedroom lamp"
];
};
};
};
};
};

View File

@@ -42,14 +42,10 @@ let
Restart = "always";
RestartSec = "5";
};
path = with pkgs; [
bash
attic-client
];
script = ''
#!/usr/bin/env bash
attic watch-store nas-cache
${pkgs.attic-client}/bin/attic watch-store nas-cache
'';
wantedBy = [ "multi-user.target" ];
};
nix-rebuild-cache = {