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 = '' envExtra = ''
${lib.getExe pkgs.macchina}
nixdev() { nixdev() {
if [[ -z "$1" ]]; then if [[ -z "$1" ]]; then
echo "Usage: nixdev <language>" echo "Usage: nixdev <language>"

8
flake.lock generated
View File

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

View File

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

View File

@@ -129,17 +129,12 @@ in
# Ollama (only on PC) # Ollama (only on PC)
services.ollama = lib.mkIf isPc { services.ollama = lib.mkIf isPc {
enable = true; enable = true;
package = pkgs.ollama-rocm; package = pkgs.ollama-vulkan;
port = 11434; 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"; rocmOverrideGfx = "11.0.0";
environmentVariables = { environmentVariables = {
OLLAMA_DEBUG = "1"; OLLAMA_NUM_CTX = "4000000000";
OLLAMA_MMAP = "0";
OLLAMA_NUM_CTX = "40000";
OLLAMA_NUM_GPU = "20";
OLLAMA_FLASH_ATTENTION = "true";
OLLAMA_KV_CACHE_TYPE = "f16";
}; };
}; };