This commit is contained in:
parent
33a30b1d2a
commit
4c4f67360b
|
@ -1,7 +1,4 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{lib, ...}:
|
||||
with lib; {
|
||||
imports = [
|
||||
./system.nix
|
||||
|
|
|
@ -4,10 +4,11 @@
|
|||
...
|
||||
}:
|
||||
with lib; let
|
||||
mkStrOption = default: description: mkOption {
|
||||
type = types.str;
|
||||
inherit default description;
|
||||
};
|
||||
mkStrOption = default: description:
|
||||
mkOption {
|
||||
type = types.str;
|
||||
inherit default description;
|
||||
};
|
||||
in {
|
||||
options.services.declarative-jellyfin.system = {
|
||||
ServerName = mkStrOption config.networking.hostName ''
|
||||
|
|
Loading…
Reference in a new issue