1
0
Fork 0
forked from foxora/nix

i need butterfly's help ;-;

This commit is contained in:
foxora 2026-02-19 18:56:57 +00:00
parent 21cb58686e
commit 861b05b042
3 changed files with 61 additions and 24 deletions

View file

@ -2,11 +2,19 @@
{
services.home-assistant = {
enable = true;
configDir = "/var/lib/hass";
configDir = "/var/lib/microvms/home-assistant";
# disables config generation, i don't wanna configure home assistant
# through nix at the moment
config = null;
};
users.users.nixos = {
isNormalUser = true;
uid = 1000;
extraGroups = ["wheel"];
hashedPassword = "$2b$05$94fPE/15g7ix7glKOaN0AeVMpitMivtQtcFL.aZIouQngOJ6nGMSC";
};
system.stateVersion = "25.11";
}