core(server/networking): now using the cloudflare / google dns
This commit is contained in:
parent
5153908d15
commit
6de4d628c6
4 changed files with 65 additions and 1 deletions
|
|
@ -23,6 +23,14 @@ let
|
|||
lib
|
||||
;
|
||||
};
|
||||
jellyfin = import ./self_host/jellyfin.nix {
|
||||
inherit
|
||||
inputs
|
||||
config
|
||||
pkgs
|
||||
lib
|
||||
;
|
||||
};
|
||||
mail = import ./self_host/mail.nix {
|
||||
inherit
|
||||
inputs
|
||||
|
|
@ -68,6 +76,7 @@ in
|
|||
{
|
||||
imports = [
|
||||
git
|
||||
jellyfin
|
||||
htop
|
||||
mail
|
||||
monitor
|
||||
|
|
@ -92,6 +101,11 @@ in
|
|||
default = false;
|
||||
description = "Enable the htop";
|
||||
};
|
||||
jellyfin = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = "Enable the jellyfin";
|
||||
};
|
||||
mail = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue