added more hyperland options

This commit is contained in:
2023-09-07 18:02:05 +02:00
parent a602737262
commit a4e51a59c0
+13 -3
View File
@@ -10,13 +10,23 @@ let
};
config = lib.mkIf cfg.enable {
programs.hyprland.enable = true;
programs.hyprland = {
enable = true;
nvidiaPatches = true;
xwayland.enable = true;
};
users.users.finn.packages = with pkgs; [
wofi
mako
waybar
];
};
hardware = {
# Opengl
opengl.enable = true;
# Most wayland compositors need this
nvidia.modesetting.enable = true;
};
};
}