ma wbob.r: deploy bureautomation with unstable branch

This commit is contained in:
makefu 2021-03-12 20:24:09 +01:00
parent e5472e178a
commit 821239422f
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 11 additions and 0 deletions

View File

@ -2,4 +2,5 @@
name="wbob";
# musnix = true;
home-manager = true;
unstable = true;
}

View File

@ -1,12 +1,15 @@
{ config, pkgs, lib, ... }:
let
kodi-host = "192.168.8.11";
unstable = import <nixpkgs-unstable> {};
in {
imports = [
./ota.nix
./comic-updater.nix
./puppy-proxy.nix
./zigbee2mqtt
# hass config
## complex configs
./multi/daily-standup.nix
@ -39,15 +42,22 @@ in {
./automation/bureau-shutdown.nix
./automation/nachtlicht.nix
./automation/schlechteluft.nix
./automation/philosophische-tuer.nix
./automation/hass-restart.nix
./device_tracker/openwrt.nix
./person/team.nix
];
networking.firewall.allowedTCPPorts = [ 8123 ];
state = [ "/var/lib/hass/known_devices.yaml" ];
services.home-assistant = {
enable = true;
package = (unstable.home-assistant.overrideAttrs (old: {
doInstallCheck = false;
})).override {
extraPackages = p: [ p.APScheduler ];
};
autoExtraComponents = true;
config = {
config = {};