fix(rpi4): fix config
This commit is contained in:
parent
3e6bc499d0
commit
126db04668
2 changed files with 3 additions and 2 deletions
|
@ -80,6 +80,7 @@
|
|||
system = "aarch64-linux";
|
||||
modules = [
|
||||
nixpkgs.nixosModules.notDetected
|
||||
{ home-manager.users.felschr.imports = [ homeManagerModules.git ]; }
|
||||
nixosModules.deconz
|
||||
(systemModule {
|
||||
hostName = "felix-rpi4";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, pydeconz, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
with pkgs; {
|
||||
environment.systemPackages = with pkgs; [ deconz ];
|
||||
|
@ -13,7 +13,7 @@ with pkgs; {
|
|||
services.home-assistant = {
|
||||
enable = true;
|
||||
package = home-assistant.override {
|
||||
extraPackages = ps: [ (ps.callPackage pydeconz { }) ];
|
||||
extraPackages = ps: with ps; [ (callPackage pydeconz { }) ];
|
||||
};
|
||||
openFirewall = true;
|
||||
config = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue