push
This commit is contained in:
21
main.nix
21
main.nix
@@ -273,43 +273,44 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
ollama = {
|
ollama = {
|
||||||
enable = true;
|
enable = false;
|
||||||
|
|
||||||
loadModels = [ "llama3.2:3b" "deepseek-r1:1.5b" "deepseek-r1:8b"];
|
loadModels = [ "llama3.2:3b" "deepseek-r1:1.5b" "deepseek-r1:8b"];
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
syncthing = {
|
syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
key = "~/.syncthing/key.pem";
|
||||||
|
cert = "~/.syncthing/cert.pem";
|
||||||
|
|
||||||
extraFlags = [ "--no-default-folder" ];
|
extraFlags = [ "--no-default-folder" ];
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
devices = if desktop then {
|
devices = if desktop then {
|
||||||
"laptop" = { id = "DEVICE_ID_LAPTOP"; };
|
#"laptop" = { id = "DEVICE_ID_LAPTOP"; };
|
||||||
} else {
|
} else {
|
||||||
"desktop" = { id = "DEVICE_ID_DESKTOP"; };
|
"desktop" = { id = "I664COC-GCOH2HX-KCVLP3R-R62LVPV-3W32DVQ-UMMBMDB-55MMIPH-OV54AAP"; };
|
||||||
};
|
};
|
||||||
|
|
||||||
folders = {
|
folders = {
|
||||||
"nix" = {
|
"nix" = {
|
||||||
path = "~/nix";
|
path = "~/nix";
|
||||||
devices = if desktop then [ "laptop" ] else [ "desktop" ];
|
devices = []; #if desktop then [ "laptop" ] else [ "desktop" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
"Documents" = {
|
"Documents" = {
|
||||||
path = "~/Documents";
|
path = "~/Documents";
|
||||||
devices = if desktop then [ "laptop" ] else [ "desktop" ];
|
devices = []; #if desktop then [ "laptop" ] else [ "desktop" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
"Downloads" = {
|
"Downloads" = {
|
||||||
path = "~/Downloads";
|
path = "~/Downloads";
|
||||||
devices = if desktop then [ "laptop" ] else [ "desktop" ];
|
devices = []; #if desktop then [ "laptop" ] else [ "desktop" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
*/
|
|
||||||
|
|
||||||
flatpak = {
|
flatpak = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user