Services: set default home dirs
This commit is contained in:
parent
f698214b28
commit
e0da7c527f
|
@ -38,4 +38,12 @@ in
|
|||
config = lib.mkIf cfg.enable {
|
||||
# Add changes applied by this module here.
|
||||
};
|
||||
|
||||
systemd.services = {
|
||||
# Forces systemd to wait for the module's configuration directory to be available before starting the service.
|
||||
myModule.unitConfig.RequiresMountsFor = cfg.home;
|
||||
|
||||
# Tells Nginx to wait for the service to be available before coming online.
|
||||
nginx.wants = [ config.systemd.services.myModule.name ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -9,13 +9,11 @@ in
|
|||
enable = lib.mkEnableOption (
|
||||
lib.mdDoc "Enable the ACME client (for Let's Encrypt TLS certificates)."
|
||||
);
|
||||
|
||||
certs = lib.mkOption {
|
||||
default = { };
|
||||
type = lib.types.attrs;
|
||||
description = "Cert configurations for ACME.";
|
||||
};
|
||||
|
||||
defaultEmail = lib.mkOption {
|
||||
default = "";
|
||||
type = lib.types.str;
|
||||
|
|
|
@ -70,7 +70,7 @@ in
|
|||
};
|
||||
|
||||
systemd.services = {
|
||||
airsonic = lib.mkIf (cfg.home != "") { unitConfig.RequiresMountsFor = cfg.home; };
|
||||
airsonic.unitConfig.RequiresMountsFor = cfg.home;
|
||||
nginx.wants = [ config.systemd.services.airsonic.name ];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -58,6 +58,7 @@ in
|
|||
User = "root";
|
||||
};
|
||||
path = config.aux.system.corePackages;
|
||||
unitConfig.RequiresMountsFor = cfg.configDir;
|
||||
# Git diffing strategy courtesy of https://stackoverflow.com/a/40255467
|
||||
script = ''
|
||||
cd ${cfg.configDir}
|
||||
|
@ -94,6 +95,7 @@ in
|
|||
User = cfg.user;
|
||||
};
|
||||
path = config.aux.system.corePackages;
|
||||
unitConfig.RequiresMountsFor = cfg.configDir;
|
||||
script = ''
|
||||
set -eu
|
||||
cd ${cfg.configDir}
|
||||
|
|
|
@ -52,6 +52,9 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
systemd.services.deluge = lib.mkIf (cfg.home != "") { unitConfig.RequiresMountsFor = cfg.home; };
|
||||
systemd.services = {
|
||||
deluge.unitConfig.RequiresMountsFor = cfg.home;
|
||||
nginx.wants = [ config.systemd.services.deluge.name ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -46,6 +46,7 @@ in
|
|||
environment = {
|
||||
HOME = cfg.home;
|
||||
};
|
||||
} // lib.optionalAttrs (cfg.home != "") { unitConfig.RequiresMountsFor = cfg.home; };
|
||||
unitConfig.RequiresMountsFor = cfg.home;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -124,7 +124,7 @@ in
|
|||
};
|
||||
|
||||
systemd.services = {
|
||||
forgejo = lib.mkIf (cfg.home != "") { unitConfig.RequiresMountsFor = cfg.home; };
|
||||
forgejo.unitConfig.RequiresMountsFor = cfg.home;
|
||||
nginx.wants = [ config.systemd.services.forgejo.name ];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -68,5 +68,10 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
systemd.services = {
|
||||
home-assistant.unitConfig.RequiresMountsFor = cfg.home;
|
||||
nginx.wants = [ config.systemd.services.home-assistant.name ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -97,7 +97,7 @@ in
|
|||
];
|
||||
|
||||
systemd.services = {
|
||||
jellyfin = lib.mkIf (cfg.home != "") { unitConfig.RequiresMountsFor = cfg.home; };
|
||||
jellyfin.unitConfig.RequiresMountsFor = cfg.home;
|
||||
nginx.wants = [ config.systemd.services.jellyfin.name ];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue