Services
This commit is contained in:
parent
32a1ca6843
commit
077998b59c
3 changed files with 30 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
|||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./modules
|
||||
./services
|
||||
];
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
|
|
15
hosts/laptop-server/services/default.nix
Normal file
15
hosts/laptop-server/services/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./jellyfin.nix
|
||||
];
|
||||
|
||||
networking = {
|
||||
nat = {
|
||||
enable = true;
|
||||
internalInterfaces = ["ve-+"];
|
||||
externalInterface = "wlp2s0";
|
||||
};
|
||||
networkmanager.unmanaged = [ "interface-name:ve-*" ];
|
||||
};
|
||||
}
|
14
hosts/laptop-server/services/jellyfin.nix
Normal file
14
hosts/laptop-server/services/jellyfin.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
containers.jellyfin = {
|
||||
config = { pkgs, ...}: {
|
||||
services.jellyfin = {
|
||||
enable = true;
|
||||
package = pkgs.jellyfin;
|
||||
};
|
||||
};
|
||||
autoStart = true;
|
||||
hostAddress = "172.30.0.2"; # TODO define in config option
|
||||
localAddress = "172.30.0.2";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue