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";
|
system = "aarch64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
nixpkgs.nixosModules.notDetected
|
nixpkgs.nixosModules.notDetected
|
||||||
|
{ home-manager.users.felschr.imports = [ homeManagerModules.git ]; }
|
||||||
nixosModules.deconz
|
nixosModules.deconz
|
||||||
(systemModule {
|
(systemModule {
|
||||||
hostName = "felix-rpi4";
|
hostName = "felix-rpi4";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, pydeconz, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
with pkgs; {
|
with pkgs; {
|
||||||
environment.systemPackages = with pkgs; [ deconz ];
|
environment.systemPackages = with pkgs; [ deconz ];
|
||||||
|
@ -13,7 +13,7 @@ with pkgs; {
|
||||||
services.home-assistant = {
|
services.home-assistant = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = home-assistant.override {
|
package = home-assistant.override {
|
||||||
extraPackages = ps: [ (ps.callPackage pydeconz { }) ];
|
extraPackages = ps: with ps; [ (callPackage pydeconz { }) ];
|
||||||
};
|
};
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
config = {
|
config = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue