Add ollama and split tardis/default.nix

This commit is contained in:
2026-07-08 22:41:57 +01:00
parent 13f8a22760
commit 86e9663531
6 changed files with 96 additions and 69 deletions
+25
View File
@@ -0,0 +1,25 @@
{ config, pkgs, ... }:
{
services.xserver = {
enable = true;
displayManager.startx.enable = true;
videoDrivers = [ "nvidia" ];
xkb = {
layout = "us";
variant = "";
options = "terminate:ctrl_alt_bksp";
};
};
services.dbus.enable = true;
services.clipmenu.enable = true;
xdg.portal = {
enable = true;
extraPortals = [
pkgs.xdg-desktop-portal-gtk
];
config.common.default = "*";
};
}