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
+1 -1
View File
@@ -10,7 +10,7 @@
cosmic-greeter.enable = true;
autoLogin = {
enable = false;
enable = true;
user = "bug";
};
};
+7
View File
@@ -0,0 +1,7 @@
{
den.aspects.bugtv = {
nixos = {
};
};
}
+11
View File
@@ -57,6 +57,17 @@
top-p = 0.95;
# 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 {
enable = true;
+2 -1
View File
@@ -3,6 +3,7 @@
nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
file-roller
wl-screenrec
];
users.users.bug.packages = with pkgs; [
@@ -14,4 +15,4 @@
];
};
};
}
}