adding jellyfin
This commit is contained in:
21
modules/homelab/services/.template.nix
Normal file
21
modules/homelab/services/.template.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ pkgs, config, lib, ... }:
|
||||
|
||||
let
|
||||
cfg = config.modules.services.<name>;
|
||||
in
|
||||
{
|
||||
options.modules.system.docker = {
|
||||
enable = lib.mkEnableOption "enables <name>";
|
||||
# extra options
|
||||
# mode = lib.mkOption {
|
||||
# type = lib.types.enum [ "server" "client" ];
|
||||
# default = "client";
|
||||
# description = "whether syncthing should run as a client (user) or server (system-wide).";
|
||||
# };
|
||||
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user