feat/nix #3

Merged
Jaaj-San merged 59 commits from feat/nix into main 2024-09-20 22:35:47 +02:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit feb7cd1e34 - Show all commits

View file

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

View file

@ -26,6 +26,7 @@
extraGroups = [ extraGroups = [
"wheel" "wheel"
"video" "video"
"seat"
]; ];
group = "gaspard"; group = "gaspard";
}; };
@ -40,6 +41,9 @@
# Programs # Programs
environment.systemPackages = [pkgs.git]; environment.systemPackages = [pkgs.git];
# Services
services.seatd.enable = true;
# NVIDIA # NVIDIA
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["nvidia-x11" "nvidia-settings"]; nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["nvidia-x11" "nvidia-settings"];