Skip to content

Commit

Permalink
immich: Fix data path and enable machine-learning by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanbruegge committed Jul 1, 2024
1 parent ebad8bf commit 5ee9671
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions caladan/services.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
enable = true;
host = "0.0.0.0";
openFirewall = true;
mediaLocation = "/data/immich";
secretsFile = "/run/secrets/immich";
database.createDB = false;
};
Expand Down
2 changes: 1 addition & 1 deletion modules/immich.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ in with lib; {
type = types.str;
default = "immich";
};
machine-learning.enable = mkEnableOption "immich-machine-learning";
machine-learning.enable = mkEnableOption "immich-machine-learning" // { default = true; };
database = {
createDB = mkOption {
type = types.bool;
Expand Down

0 comments on commit 5ee9671

Please sign in to comment.