14 lines
185 B
Nix
14 lines
185 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
options.system.fileserver.enable = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = false;
|
||
|
};
|
||
|
|
||
|
imports = [
|
||
|
./jellyfin
|
||
|
./nextcloud
|
||
|
./nfs
|
||
|
];
|
||
|
}
|