1
0
Fork 0
permafrost/modules/nyazoom.nix

22 lines
465 B
Nix
Raw Normal View History

2024-12-27 01:46:11 -08:00
{ lib, config, inputs, pkgs, ... }:
let
nyazoom = inputs.nyazoom.packages.${pkgs.system}.default;
cfg = config.permafrost.nyazoom;
in
{
options.permafrost.nyazoom = {
enable = lib.mkEnableOption "permafrost nixos module";
};
config = lib.mkIf cfg.enable {
systemd.user.services.nyazoom = {
script = ''
DATABASE_URL="sqlite:///var/lib/nyazoom/data" ${lib.getExe nyazoom}
'';
wants = [ "network.target" ];
};
};
}