feat(selfhost/teamspeak): adding teamspeak to the configuration
This commit is contained in:
parent
62d63e139b
commit
20ffcf4ac1
4 changed files with 35 additions and 0 deletions
|
|
@ -7,6 +7,9 @@ let
|
|||
monitor = import ./self_host/monitor.nix {
|
||||
inherit inputs config pkgs lib;
|
||||
};
|
||||
teamspeak = import ./self_host/teamspeak.nix {
|
||||
inherit inputs config pkgs lib;
|
||||
};
|
||||
ollama = import ./self_host/ollama.nix {
|
||||
inherit inputs config pkgs lib;
|
||||
};
|
||||
|
|
@ -20,6 +23,7 @@ in
|
|||
nextcloud
|
||||
htop
|
||||
ollama
|
||||
teamspeak
|
||||
monitor
|
||||
];
|
||||
|
||||
|
|
@ -34,6 +38,11 @@ in
|
|||
default = false;
|
||||
description = "Enable the htop";
|
||||
};
|
||||
teamspeak = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = "Enable the teamspeak";
|
||||
};
|
||||
ollama = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue