restructured options
This commit is contained in:
parent
32e4e2614a
commit
0e706bed3e
4
modules/options/branding.nix
Normal file
4
modules/options/branding.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{lib, ...}:
|
||||||
|
with lib; {
|
||||||
|
|
||||||
|
}
|
|
@ -1,5 +1,11 @@
|
||||||
{lib, ...}:
|
{lib, ...}:
|
||||||
with lib; {
|
with lib; {
|
||||||
|
imports = [
|
||||||
|
./system.nix
|
||||||
|
./encoding.nix
|
||||||
|
./network.nix
|
||||||
|
./branding.nix
|
||||||
|
];
|
||||||
options.services.declarative-jellyfin = {
|
options.services.declarative-jellyfin = {
|
||||||
enable = mkEnableOption "Jellyfin Service";
|
enable = mkEnableOption "Jellyfin Service";
|
||||||
|
|
4
modules/options/encoding.nix
Normal file
4
modules/options/encoding.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{lib, ...}:
|
||||||
|
with lib; {
|
||||||
|
|
||||||
|
}
|
4
modules/options/network.nix
Normal file
4
modules/options/network.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{lib, ...}:
|
||||||
|
with lib; {
|
||||||
|
|
||||||
|
}
|
4
modules/options/system.nix
Normal file
4
modules/options/system.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{lib, ...}:
|
||||||
|
with lib; {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue