summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/docker.nix
blob: e8a47dbbbaed9fa4022f1bc858ca8b5ee6506949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ config, pkgs, lib, ... }:
let
  confdir = "/var/lib/homeassistant-docker";
in {
  imports = [ 
    ./nginx.nix
    ./mqtt.nix
    ./signal-rest
    ./signal-rest/service.nix
  ];

  networking.firewall.allowedTCPPorts = [ 8123 ];
  state = [ "/var/lib/hass/known_devices.yaml" ];
  virtualisation.oci-containers.containers.hass = {
    image = "homeassistant/home-assistant:latest";
    environment = {
      TZ = "Europe/Berlin";
      UMASK = "007";
    };
    extraOptions = ["--net=host" ];
    volumes = [
      "${confdir}:/config"
      #"/data/music:/config/media"
    ];
  };
  systemd.tmpfiles.rules = [
    #"f ${confdir}/docker-run 0770 kiosk kiosk - -"
    "d ${confdir} 0770 kiosk kiosk - -"
  ];
}