trying to figure out some gnome issues. ai.

This commit is contained in:
2025-12-18 09:25:13 -06:00
parent 89068afc9f
commit 11af2f699f
3 changed files with 9 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
./snapshot.nix ./snapshot.nix
../../modules/nixos/localization.nix ../../modules/nixos/localization.nix
# ../../modules/nixos/ai/default.nix ../../modules/nixos/ai/default.nix
../../modules/nixos/desktops/gnome.nix ../../modules/nixos/desktops/gnome.nix
../../modules/nixos/desktops/river.nix ../../modules/nixos/desktops/river.nix
../../modules/nixos/fonts.nix ../../modules/nixos/fonts.nix

View File

@@ -3,7 +3,6 @@
imports = [ ]; imports = [ ];
services.ollama = { services.ollama = {
enable = true; enable = true;
acceleration = "cuda";
host = "0.0.0.0"; host = "0.0.0.0";
openFirewall = true; openFirewall = true;
}; };

View File

@@ -5,5 +5,13 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
texstudio texstudio
texliveFull texliveFull
gsettings-desktop-schemas
]; ];
programs.dconf.enable = true;
environment.sessionVariables.XDG_DATA_DIRS = [
"${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}"
"${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}"
];
} }