diff --git a/hosts/Hevana/default.nix b/hosts/Hevana/default.nix index 2b4c9af..8a5a816 100644 --- a/hosts/Hevana/default.nix +++ b/hosts/Hevana/default.nix @@ -114,8 +114,8 @@ in configText = builtins.readFile ./etc/apcupsd.conf; }; autoUpgrade = { - enable = false; # Don't update the system... - pushUpdates = true; # ...but do push updates remotely. + enable = true; + pushUpdates = true; # Update automatically and push updates back up to Forgejo configDir = config.secrets.nixConfigFolder; onCalendar = "daily"; user = config.users.users.aires.name; diff --git a/modules/services/jellyfin.nix b/modules/services/jellyfin.nix index 718229e..cabda67 100644 --- a/modules/services/jellyfin.nix +++ b/modules/services/jellyfin.nix @@ -2,7 +2,6 @@ pkgs, config, lib, - self, ... }: let @@ -79,7 +78,7 @@ in jellyfin = { enable = true; - dataDir = lib.mkIf (cfg.home != "") cfg.home; + dataDir = cfg.home; group = "media"; package = jellyfin-audio-save; };