home assistant tet

This commit is contained in:
mjallen18
2025-02-26 18:52:57 -06:00
parent 7c773f1aaf
commit 390383e59a
7 changed files with 591 additions and 589 deletions

View File

@@ -5,7 +5,7 @@
{ config, lib, pkgs, ... }:
let
user = "hass";
user = "hass-admin";
password = "$y$j9T$EkPXmsmIMFFZ.WRrBYCxS1$P0kwo6e4.WM5DsqUcEqWC3MrZp5KfCjxffraMFZWu06";
SSID = "Joey's Jungle 5G";
SSIDpassword = "kR8v&3Qd"; # config.sops.templates."wifi-password".content;
@@ -19,6 +19,7 @@ in
./boot.nix
./hardware-configuration.nix
./impermanence.nix
./homeassistant.nix
../default.nix
];
@@ -113,11 +114,13 @@ in
users = {
mutableUsers = false;
users."${user}" = {
isNormalUser = true;
isNormalUser = lib.mkForce true;
initialHashedPassword = password;
extraGroups = [
"wheel"
"docker"
"network-manager"
"hass"
];
shell = pkgs.zsh;
};