chore(tree-wide): clean up for 0.2
This commit is contained in:
parent
5dfec647b0
commit
17f814342c
3 changed files with 5 additions and 6 deletions
|
@ -3,7 +3,6 @@
|
|||
leetcode-nvim.enable = true;
|
||||
mkdir.enable = true;
|
||||
motion.hop.enable = true;
|
||||
vim-wakatime.enable = true;
|
||||
yazi-nvim = {
|
||||
enable = true;
|
||||
mappings = {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.server.librechat;
|
||||
cfg = config.server.web-apps;
|
||||
in
|
||||
{
|
||||
|
||||
|
@ -13,11 +13,11 @@ in
|
|||
"${inputs.rrvsh-nixpkgs}/nixos/modules/services/web-apps/librechat.nix"
|
||||
];
|
||||
|
||||
options.server.librechat = {
|
||||
enable = lib.mkEnableOption "";
|
||||
options.server.web-apps = {
|
||||
librechat.enable = lib.mkEnableOption "";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
config = lib.mkIf cfg.librechat.enable {
|
||||
services.librechat = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
|
@ -24,7 +24,7 @@
|
|||
mountHelios = true;
|
||||
databases.mongodb.enable = true;
|
||||
databases.mysql.enable = true;
|
||||
librechat.enable = true;
|
||||
web-apps.librechat.enable = true;
|
||||
web-servers.nginx.enable = true;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue