fix(rpi4): fix config

This commit is contained in:
Felix Schröter 2020-10-11 10:49:06 +02:00
parent 3e6bc499d0
commit 126db04668
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
2 changed files with 3 additions and 2 deletions

View file

@ -80,6 +80,7 @@
system = "aarch64-linux";
modules = [
nixpkgs.nixosModules.notDetected
{ home-manager.users.felschr.imports = [ homeManagerModules.git ]; }
nixosModules.deconz
(systemModule {
hostName = "felix-rpi4";

View file

@ -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 = {