good committ

This commit is contained in:
2026-02-27 13:17:49 +00:00
parent e29dcd7267
commit 732716fa96
4 changed files with 12 additions and 17 deletions

View File

@@ -77,7 +77,6 @@
'';
envExtra = ''
${lib.getExe pkgs.macchina}
nixdev() {
if [[ -z "$1" ]]; then
echo "Usage: nixdev <language>"

8
flake.lock generated
View File

@@ -1123,11 +1123,11 @@
},
"nixpkgs_5": {
"locked": {
"lastModified": 1771848320,
"narHash": "sha256-0MAd+0mun3K/Ns8JATeHT1sX28faLII5hVLq0L3BdZU=",
"owner": "nixos",
"lastModified": 1770481085,
"narHash": "sha256-SSYilIxrPig0ecD/RZK+aShGOThRkb56+Ta6j1cnjdo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2fc6539b481e1d2569f25f8799236694180c0993",
"rev": "40a7eec56716c8848c98cc2e63416514e6abc573",
"type": "github"
},
"original": {

View File

@@ -159,6 +159,7 @@ in
zed-editor
android-studio-full
claude-code
opencode
# Langugage tooling from inputs
#inputs.qs-qml.packages.${pkgs.stdenv.hostPlatform.system}.qml-ts-mode
#inputs.qs-qml.packages.${pkgs.stdenv.hostPlatform.system}.tree-sitter-qmljs
@@ -202,10 +203,10 @@ in
adw-gtk3
(pkgs.callPackage ../personalPKGS/oreo.nix { colors = [ "all" ]; })
#(pkgs.callPackage ../personalPKGS/reversal-icon-theme.nix { colorVariants = [ "all" ]; })
(pkgs.reversal-icon-theme.override {
allColorVariants = true;
})
(pkgs.callPackage ../personalPKGS/reversal-icon-theme.nix { colorVariants = [ "all" ]; })
#(pkgs.reversal-icon-theme.override {
# allColorVariants = true;
#})
pywalfox-native

View File

@@ -129,17 +129,12 @@ in
# Ollama (only on PC)
services.ollama = lib.mkIf isPc {
enable = true;
package = pkgs.ollama-rocm;
package = pkgs.ollama-vulkan;
port = 11434;
host = "127.0.0.1"; # Bind to localhost only for security
host = "0.0.0.0"; # Bind to localhost only for security
rocmOverrideGfx = "11.0.0";
environmentVariables = {
OLLAMA_DEBUG = "1";
OLLAMA_MMAP = "0";
OLLAMA_NUM_CTX = "40000";
OLLAMA_NUM_GPU = "20";
OLLAMA_FLASH_ATTENTION = "true";
OLLAMA_KV_CACHE_TYPE = "f16";
OLLAMA_NUM_CTX = "4000000000";
};
};