diff --git a/flake.nix b/flake.nix index a3abee6..c17afce 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 260 current 2025-10-11 02:24:48 25.05.20251006.20c4598 6.12.50 * +# generation: 261 current 2025-10-11 02:26:00 25.05.20251006.20c4598 6.12.50 * { description = "blakes nix config"; inputs = { diff --git a/hosts/snowbelle/configuration.nix b/hosts/snowbelle/configuration.nix index b843a2f..2d2ed81 100644 --- a/hosts/snowbelle/configuration.nix +++ b/hosts/snowbelle/configuration.nix @@ -20,7 +20,7 @@ in backups.enable = true; backups.repo = "/holocron/backups"; sops.enable = true; - docker.enable = false; + podman.enable = false; syncthing.enable = true; tailscale.enable = true; nvidia.enable = true; diff --git a/modules/homelab/services/smarthome/homeassistant/default.nix b/modules/homelab/services/smarthome/homeassistant/default.nix index 47d8bcf..28b8f1e 100644 --- a/modules/homelab/services/smarthome/homeassistant/default.nix +++ b/modules/homelab/services/smarthome/homeassistant/default.nix @@ -55,29 +55,24 @@ in extraGroups = []; }; - virtualisation = { - podman.enable = true; - oci-containers = { - containers = { - homeassistant = { - image = "homeassistant/home-assistant:stable"; - autoStart = true; - extraOptions = [ - "--pull=newer" - ]; - volumes = [ - "${cfg.data_dir}:/config" - ]; - ports = [ - "127.0.0.1:7704:8123" - "127.0.0.1:8124:80" - ]; - environment = { - TZ = homelab.tz; - PUID = toString config.users.users.${service}.uid; - PGID = toString config.users.groups.${service}.gid; - }; - }; + virtualisation.oci-containers.containers = { + homeassistant = { + image = "homeassistant/home-assistant:stable"; + autoStart = true; + extraOptions = [ + "--pull=newer" + ]; + volumes = [ + "${cfg.data_dir}:/config" + ]; + ports = [ + "127.0.0.1:7704:8123" + "127.0.0.1:8124:80" + ]; + environment = { + TZ = homelab.tz; + PUID = toString config.users.users.${service}.uid; + PGID = toString config.users.groups.${service}.gid; }; }; };