Move jellyfin into its own module
This commit is contained in:
parent
7cf71d17f6
commit
8876a339b6
|
@ -187,9 +187,6 @@ in
|
|||
zeroad
|
||||
];
|
||||
|
||||
services.jellyfin.enable = true;
|
||||
services.jellyfin.openFirewall = true;
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
# programs.mtr.enable = true;
|
||||
|
|
|
@ -3,5 +3,6 @@
|
|||
../.
|
||||
./fonts.nix
|
||||
./gitea.nix
|
||||
./jellyfin.nix
|
||||
];
|
||||
}
|
||||
|
|
6
modules/nixos/desktop/jellyfin.nix
Normal file
6
modules/nixos/desktop/jellyfin.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
services.jellyfin = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue