Some minor updates and fixes

This commit is contained in:
Emmet 2025-11-30 15:37:42 -06:00
parent 44136d40b5
commit 870d360e8a
7 changed files with 19 additions and 128 deletions

View file

@ -1,4 +1,9 @@
{ config, lib, ... }:
{
config,
lib,
pkgs,
...
}:
{
config = {
@ -30,7 +35,7 @@
virtualization = {
virtualMachines.enable = true;
};
ai.enable = true;
ai.enable = false; # local-ai broken in nixpkgs
# wm
hyprland.enable = true;
@ -42,6 +47,10 @@
bluetooth.enable = true;
};
home.packages = with pkgs; [
freerdp
];
home.sessionVariables = lib.mkIf config.userSettings.hyprland.enable {
AQ_DRM_DEVICES = lib.mkForce "/dev/dri/card2:/dev/dri/card1";
};