diff --git a/hosts/sire/guests/immich.nix b/hosts/sire/guests/immich.nix index 8b3fbad..64f3a14 100644 --- a/hosts/sire/guests/immich.nix +++ b/hosts/sire/guests/immich.nix @@ -102,12 +102,6 @@ template = "{{y}}/{{MM}}/{{filename}}"; }; theme.customCss = ""; - thumbnail = { - colorspace = "p3"; - jpegSize = 1440; - quality = 80; - webpSize = 250; - }; trash = { days = 30; enabled = true; diff --git a/hosts/zackbiene/home-assistant.nix b/hosts/zackbiene/home-assistant.nix index d1c9a36..7ef3b09 100644 --- a/hosts/zackbiene/home-assistant.nix +++ b/hosts/zackbiene/home-assistant.nix @@ -33,6 +33,7 @@ in { "fritzbox" "soundtouch" "spotify" + "matter" #"zha" "mqtt" ]; diff --git a/users/config/shell/zsh/default.nix b/users/config/shell/zsh/default.nix index 70742ff..22f8225 100644 --- a/users/config/shell/zsh/default.nix +++ b/users/config/shell/zsh/default.nix @@ -4,7 +4,7 @@ ... }: { # Needed in path for zsh-histdb - home.packages = [pkgs.sqlite]; + home.packages = [pkgs.sqlite-interactive]; programs.zsh = { enable = true; diff --git a/users/myuser/dev/default.nix b/users/myuser/dev/default.nix index c0f420c..f50a2ab 100644 --- a/users/myuser/dev/default.nix +++ b/users/myuser/dev/default.nix @@ -14,12 +14,12 @@ ]; extraOutputsToInstall = ["man" "doc" "devdoc"]; - packages = with pkgs; [ - git-lfs - d2 - cloc - jq - python3 + packages = [ + pkgs.git-lfs + pkgs.d2 + pkgs.cloc + pkgs.jq + pkgs.python3 ]; }; }