updated brain home assistant

This commit is contained in:
2025-10-04 09:31:52 -04:00
parent f22a9d107a
commit acab92ac9c
3 changed files with 23 additions and 3 deletions

View File

@@ -148,6 +148,7 @@
"mixtral",
"mklabel",
"mkpart",
"modbus",
"modesetting",
"mountpoint",
"mountpoints",
@@ -184,6 +185,7 @@
"overalljails",
"overscroll",
"overseerr",
"paho",
"partitionwise",
"pbmode",
"pciutils",
@@ -213,6 +215,7 @@
"pychromecast",
"pylance",
"pymetno",
"pymodbus",
"pyownet",
"qbit",
"qbittorrent",
@@ -286,6 +289,7 @@
"usernamehw",
"userprefs",
"vfat",
"victron",
"virt",
"virtualisation",
"vpnpromourl",

View File

@@ -26,6 +26,9 @@
time_zone = "America/New_York";
unit_system = "us_customary";
temperature_unit = "F";
packages = {
victron_modbuss = "!include updated elises groupsvictron_modbuss.yaml";
};
};
recorder = {
db_url = "postgresql://@/hass";
@@ -56,9 +59,11 @@
};
extraPackages =
python3Packages: with python3Packages; [
jellyfin-apiclient-python
psycopg2
uiprotect
pymodbus # for modbus
gtts # not sure what wants this
jellyfin-apiclient-python # for jellyfin
paho-mqtt # for mqtt
psycopg2 # for postgresql
];
extraComponents = [ "isal" ];
};

View File

@@ -57,6 +57,17 @@
"[github-actions-workflow]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"[dockercompose]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.defaultFormatter": "redhat.vscode-yaml"
},
// spell check
"cSpell.enabled": true,