Misc: Add nixfmt-tree and run nix fmt

This commit is contained in:
2026-07-30 15:03:14 +02:00
parent 3831cc1540
commit b0a83e2ad5
29 changed files with 200 additions and 132 deletions
+11 -11
View File
@@ -1,15 +1,15 @@
{
flake.modules.nixos.intel-gpu = {pkgs, ...}: {
boot.kernelModules = [ "kvm-intel" ];
flake.modules.nixos.intel-gpu = { pkgs, ... }: {
boot.kernelModules = [ "kvm-intel" ];
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-media-driver
intel-compute-runtime
];
};
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-media-driver
intel-compute-runtime
];
};
environment.sessionVariables.LIBVA_DRIVER_NAME = "iHD";
};
environment.sessionVariables.LIBVA_DRIVER_NAME = "iHD";
};
}