mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
ef03964b92
Signed-off-by: Litchi Pi <litchi.pi@proton.me>
74 lines
1.8 KiB
Nix
74 lines
1.8 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.ifm;
|
|
in
|
|
{
|
|
options.services.ifm = {
|
|
enable = lib.mkEnableOption ''
|
|
Improved file manager, a single-file web-based filemanager
|
|
|
|
Lightweight and minimal, served using PHP's built-in server
|
|
'';
|
|
|
|
dataDir = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Directory to serve throught the file managing service";
|
|
};
|
|
|
|
listenAddress = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "127.0.0.1";
|
|
description = "Address on which the service is listening";
|
|
example = "0.0.0.0";
|
|
};
|
|
|
|
port = lib.mkOption {
|
|
type = lib.types.port;
|
|
default = 9090;
|
|
description = "Port on which to serve the IFM service";
|
|
};
|
|
|
|
settings = lib.mkOption {
|
|
type = with lib.types; attrsOf anything;
|
|
default = { };
|
|
description = ''
|
|
Configuration of the IFM service.
|
|
|
|
See [the documentation](https://github.com/misterunknown/ifm/wiki/Configuration)
|
|
for available options and default values.
|
|
'';
|
|
example = {
|
|
IFM_GUI_SHOWPATH = 0;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
systemd.services.ifm = {
|
|
description = "Improved file manager, a single-file web based filemanager";
|
|
|
|
after = [ "network-online.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
environment = {
|
|
} // (builtins.mapAttrs (_: val: toString val) cfg.settings);
|
|
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
User = "ifm";
|
|
StandardOutput = "journal";
|
|
BindPaths = "${cfg.dataDir}:/data";
|
|
PrivateTmp = true;
|
|
ExecStart = "${lib.getExe pkgs.ifm-web} ${lib.escapeShellArg cfg.listenAddress} ${builtins.toString cfg.port} /data";
|
|
};
|
|
};
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ litchipi ];
|
|
}
|