diff --git a/flake.nix b/flake.nix index 0011c12..c8338d2 100644 --- a/flake.nix +++ b/flake.nix @@ -98,5 +98,9 @@ url = "github:AdnanHodzic/auto-cpufreq"; inputs.nixpkgs.follows = "nixpkgs"; }; + + /* + bugtv.url = "g" + */ }; } diff --git a/modules/core/desktop/cosmic.nix b/modules/core/desktop/cosmic.nix index 873e8b4..12127d7 100644 --- a/modules/core/desktop/cosmic.nix +++ b/modules/core/desktop/cosmic.nix @@ -10,7 +10,7 @@ cosmic-greeter.enable = true; autoLogin = { - enable = false; + enable = true; user = "bug"; }; }; diff --git a/modules/services/bugtv.nix b/modules/services/bugtv.nix new file mode 100644 index 0000000..d65e593 --- /dev/null +++ b/modules/services/bugtv.nix @@ -0,0 +1,7 @@ +{ + den.aspects.bugtv = { + nixos = { + + }; + }; +} \ No newline at end of file diff --git a/modules/software/llm/ollama.nix b/modules/software/llm/ollama.nix index 5979d0c..b87982a 100644 --- a/modules/software/llm/ollama.nix +++ b/modules/software/llm/ollama.nix @@ -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; diff --git a/modules/software/utilities/desktop.nix b/modules/software/utilities/desktop.nix index d3beb14..667d633 100644 --- a/modules/software/utilities/desktop.nix +++ b/modules/software/utilities/desktop.nix @@ -3,6 +3,7 @@ nixos = { pkgs, ... }: { environment.systemPackages = with pkgs; [ file-roller + wl-screenrec ]; users.users.bug.packages = with pkgs; [ @@ -14,4 +15,4 @@ ]; }; }; -} \ No newline at end of file +}