From 37d1109bc30cc8cff2bc383ec25c6ca017e945cd Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 24 Nov 2024 14:02:35 -0700 Subject: [PATCH] [NixOS] Enable home-assistant on justin-bieber-creek --- nixos/machines/justin-bieber-creek.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/machines/justin-bieber-creek.nix b/nixos/machines/justin-bieber-creek.nix index 64081c01..07eb2f9c 100644 --- a/nixos/machines/justin-bieber-creek.nix +++ b/nixos/machines/justin-bieber-creek.nix @@ -8,7 +8,8 @@ myModules.fonts.enable = true; myModules.base.enable = true; myModules.desktop.enable = true; - + services.home-assistant.enable = true; + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; @@ -39,4 +40,4 @@ home-manager.users = forEachUser { home.stateVersion = "23.05"; }; -} \ No newline at end of file +}