This commit is contained in:
4DBug
2026-08-26 13:22:02 -05:00
parent 4578f0b32f
commit f8b9645149
5 changed files with 25 additions and 2 deletions
+4
View File
@@ -98,5 +98,9 @@
url = "github:AdnanHodzic/auto-cpufreq"; url = "github:AdnanHodzic/auto-cpufreq";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
/*
bugtv.url = "g"
*/
}; };
} }
+1 -1
View File
@@ -10,7 +10,7 @@
cosmic-greeter.enable = true; cosmic-greeter.enable = true;
autoLogin = { autoLogin = {
enable = false; enable = true;
user = "bug"; user = "bug";
}; };
}; };
+7
View File
@@ -0,0 +1,7 @@
{
den.aspects.bugtv = {
nixos = {
};
};
}
+11
View File
@@ -57,6 +57,17 @@
top-p = 0.95; top-p = 0.95;
# keep-sorted end # keep-sorted end
}; };
"qwen3.8-27b" = {
# keep-sorted start
ctx-size = 32768; # drop from the 65536 default to leave VRAM headroom at Q6
hf-repo = "unsloth/Qwen3.8-27B-GGUF:UD-Q6_K";
min-p = 0.0;
temperature = 1.0;
top-k = 20;
top-p = 0.95;
# keep-sorted end
};
}; };
in { in {
enable = true; enable = true;
+2 -1
View File
@@ -3,6 +3,7 @@
nixos = { pkgs, ... }: { nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
file-roller file-roller
wl-screenrec
]; ];
users.users.bug.packages = with pkgs; [ users.users.bug.packages = with pkgs; [
@@ -14,4 +15,4 @@
]; ];
}; };
}; };
} }