Compare commits

..

No commits in common. "feb7cd1e343a0aef78a2471e8c31a16f3e5fa56e" and "3c4da2d439c05e017f15c374f947866463355a27" have entirely different histories.

2 changed files with 1 additions and 11 deletions

View file

@ -9,7 +9,6 @@
home.packages = [
pkgs.egl-wayland # For NVIDIA compatibility
pkgs.xdg-desktop-portal-hyprland
];
wayland.windowManager.hyprland = {

View file

@ -26,7 +26,6 @@
extraGroups = [
"wheel"
"video"
"seat"
];
group = "gaspard";
};
@ -38,16 +37,10 @@
};
};
# Programs
environment.systemPackages = [pkgs.git];
# Services
services.seatd.enable = true;
# NVIDIA
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["nvidia-x11" "nvidia-settings"];
hardware.graphics.enable = true;
hardware.opengl.enable = true;
services.xserver.videoDrivers = ["nvidia"];
@ -61,6 +54,4 @@
nvidiaBusId = "PCI:1:0:0";
};
};
system.stateVersion = "24.11";
}