feat: Disable navidrome and ollama

This commit is contained in:
uttarayan21
2025-01-12 17:22:56 +05:30
parent 45040e39aa
commit 3914d48af6
5 changed files with 14 additions and 18 deletions

View File

@@ -23,6 +23,16 @@ lib.attrsets.optionalAttrs device.hasGui {
# home.file = lib.optionalAttrs device.isMac { # home.file = lib.optionalAttrs device.isMac {
# "Applications/1Password.app".source = "${pkgs._1password-gui}/Applications/1Password.app"; # "Applications/1Password.app".source = "${pkgs._1password-gui}/Applications/1Password.app";
# }; # };
# Only for checking markdown previews
vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
shd101wyy.markdown-preview-enhanced
asvetliakov.vscode-neovim
];
};
home.packages = with pkgs; home.packages = with pkgs;
[] []
++ lib.optionals pkgs.stdenv.isLinux [ ++ lib.optionals pkgs.stdenv.isLinux [

View File

@@ -159,10 +159,6 @@ in {
enableFishIntegration = true; enableFishIntegration = true;
enableNushellIntegration = true; enableNushellIntegration = true;
}; };
# thefuck = {
# enable = true;
# enableFishIntegration = true;
# };
direnv = { direnv = {
enable = true; enable = true;
# enableFishIntegration = true; // Auto enabled # enableFishIntegration = true; // Auto enabled
@@ -255,7 +251,6 @@ in {
shellAliases = { shellAliases = {
cd = "z"; cd = "z";
yy = "yazi"; yy = "yazi";
nv = "neovide";
cat = "bat"; cat = "bat";
}; };
extraConfig = '' extraConfig = ''
@@ -332,16 +327,6 @@ in {
# extraPackages = with pkgs.bat-extras; [batman batgrep batwatch]; # extraPackages = with pkgs.bat-extras; [batman batgrep batwatch];
}; };
# Only for checking markdown previews
vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
shd101wyy.markdown-preview-enhanced
asvetliakov.vscode-neovim
];
};
home-manager = {enable = true;}; home-manager = {enable = true;};
aichat = { aichat = {
enable = true; enable = true;

View File

@@ -3,8 +3,8 @@
./atuin.nix ./atuin.nix
./authelia.nix ./authelia.nix
./home-assistant.nix ./home-assistant.nix
./navidrome.nix # ./navidrome.nix
./llama.nix # ./llama.nix
./nextcloud.nix ./nextcloud.nix
./jellyfin.nix ./jellyfin.nix
]; ];

View File

@@ -14,7 +14,7 @@
}; };
}; };
nextjs-ollama-llm-ui = { nextjs-ollama-llm-ui = {
enable = true; enable = false;
port = 5096; port = 5096;
ollamaUrl = "https://llama.darksailor.dev/api/ollama"; ollamaUrl = "https://llama.darksailor.dev/api/ollama";
}; };

View File

@@ -13,6 +13,7 @@
hostName = "cloud.darksailor.dev"; hostName = "cloud.darksailor.dev";
config.adminuser = "servius"; config.adminuser = "servius";
config.adminpassFile = config.sops.secrets."nextcloud/adminpass".path; config.adminpassFile = config.sops.secrets."nextcloud/adminpass".path;
config.dbtype = "sqlite";
configureRedis = true; configureRedis = true;
https = true; https = true;
}; };