mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-14 11:04:11 -05:00
18 lines
189 B
Nix
18 lines
189 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
imports = [
|
|
inputs.nix-secrets.flakeModules.jellyfin
|
|
];
|
|
|
|
services.jellyfin = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|