feat/nix #3
2 changed files with 5 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
|||
|
||||
home.packages = [
|
||||
pkgs.egl-wayland # For NVIDIA compatibility
|
||||
pkgs.xdg-desktop-portal-hyprland
|
||||
];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
extraGroups = [
|
||||
"wheel"
|
||||
"video"
|
||||
"seat"
|
||||
];
|
||||
group = "gaspard";
|
||||
};
|
||||
|
@ -40,6 +41,9 @@
|
|||
# Programs
|
||||
environment.systemPackages = [pkgs.git];
|
||||
|
||||
# Services
|
||||
services.seatd.enable = true;
|
||||
|
||||
# NVIDIA
|
||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["nvidia-x11" "nvidia-settings"];
|
||||
|
||||
|
|
Loading…
Reference in a new issue