Compare commits
4 commits
6364da77aa
...
fa9cd84c82
| Author | SHA1 | Date | |
|---|---|---|---|
| fa9cd84c82 | |||
| 7f928ed2ae | |||
| 8f45819c1e | |||
| dcd15e47d6 |
4 changed files with 21 additions and 1 deletions
|
|
@ -84,6 +84,7 @@
|
|||
++ (if (desktop && os == "linux") then [
|
||||
./homes/linux-desktop.nix
|
||||
plasma-manager.homeModules.plasma-manager
|
||||
quadlet-nix.homeManagerModules.quadlet
|
||||
] else
|
||||
[ ]) ++ extraModules;
|
||||
extraSpecialArgs = {
|
||||
|
|
|
|||
|
|
@ -65,6 +65,7 @@
|
|||
# tsed - TailScale Exit node Disconnect
|
||||
tsed = "tailscale set --exit-node=";
|
||||
micromamba = "mamba";
|
||||
conda = "mamba";
|
||||
};
|
||||
sessionPath = [ "$HOME/.local/bin" ];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -14,6 +14,23 @@
|
|||
services = {
|
||||
gpg-agent = { sshKeys = [ "F72C07DBA3DC0903C3ABB55E8B460803FEC22640" ]; };
|
||||
};
|
||||
virtualisation.quadlet = {
|
||||
containers = {
|
||||
anythingllm = {
|
||||
autoStart = true;
|
||||
containerConfig = {
|
||||
image = "docker.io/mintplexlabs/anythingllm:1.9";
|
||||
addHosts = [ "ollama.millironx.local:host-gateway" ];
|
||||
publishPorts = [ "3001:3001" ];
|
||||
volumes =
|
||||
[ "${config.xdg.dataHome}/anythingllm:/app/server/storage:Z" ];
|
||||
environments = { STORAGE_DIR = "/app/server/storage"; };
|
||||
|
||||
};
|
||||
};
|
||||
};
|
||||
autoUpdate.enable = true;
|
||||
};
|
||||
xdg = {
|
||||
configFile = {
|
||||
"nextflow.config".text = ''
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
ShowFullPath = true;
|
||||
ShowStatusBar = "FullWidth";
|
||||
ShowZoomSlider = true;
|
||||
ViewMode = 1;
|
||||
};
|
||||
"KFileDialog Settings" = {
|
||||
"Places Icons Auto-resize" = false;
|
||||
|
|
@ -66,7 +67,7 @@
|
|||
Appearance.chartFace = "org.kde.ksysguard.barchart";
|
||||
Sensors.highPrioritySensorIds = "[${
|
||||
builtins.concatStringsSep "," (builtins.genList
|
||||
(i: ''"cpu/cpu${builtins.toString i}/usage"'') 12)
|
||||
(i: ''"cpu/cpu${builtins.toString i}/usage"'') 32)
|
||||
}]";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue