up
This commit is contained in:
@@ -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"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user