before we get too crazy

This commit is contained in:
atagen 2026-02-25 14:53:38 +11:00
parent fe668b5b9e
commit 453d780695
21 changed files with 612 additions and 291 deletions

View file

@ -1,7 +1,5 @@
{
config,
lib,
pkgs,
...
}:
{
@ -12,8 +10,7 @@
hardware.graphics.enable = true;
services.xserver.videoDrivers = [ "nvidia" ];
# temporarily disabled bc firefox
nixpkgs.config.cudaSupport = false;
nixpkgs.config.cudaSupport = true;
hardware.nvidia = {
package = config.boot.kernelPackages.nvidiaPackages.beta;

View file

@ -1,25 +0,0 @@
{
# inputs,
config,
scope,
...
}:
scope "services" {
ollama = {
enable = false;
user = "ollama";
};
open-webui = {
# package = inputs.nixpkgs-stable.legacyPackages.x86_64-linux.open-webui;
enable = false;
port = 8088;
environment = {
DO_NOT_TRACK = "True";
SCARF_NO_ANALYTICS = "True";
ANONYMIZED_TELEMETRY = "False";
WEBUI_AUTH = "False";
DATABASE_URL = "sqlite:///${config.services.open-webui.stateDir}/newdb.db";
};
};
}