feat: implement the managed Hyprland desktop with Kitty and stable updates

This commit is contained in:
Coding Agent
2026-09-05 05:32:34 +00:00
parent 366d19a6b5
commit cb003093c2
17 changed files with 1177 additions and 95 deletions
+13
View File
@@ -0,0 +1,13 @@
# Opt in only on a supported physical NVIDIA machine, not EC2/Mesa targets.
{ config, ... }:
{
services.xserver.videoDrivers = [ "nvidia" ];
hardware.nvidia = {
modesetting.enable = true;
open = true; # Turing or newer; select deliberately for the real hardware.
package = config.boot.kernelPackages.nvidiaPackages.stable;
powerManagement.enable = true;
nvidiaSettings = true;
};
# No global renderer overrides or Firefox sandbox-disabling variables.
}