11 lines
168 B
Nix
11 lines
168 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
options.system.fileserver.enable = lib.mkEnableOption "Enable file serving services";
|
||
|
|
||
|
imports = [
|
||
|
./jellyfin
|
||
|
./nextcloud
|
||
|
./nfs
|
||
|
];
|
||
|
}
|