dots/hosts/orion/modules/graphical.nix
Price Hiller 02334f5601
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m14s
refactor!: the big nix refactor
2024-05-03 14:35:00 -05:00

24 lines
443 B
Nix

{ pkgs, ... }:
{
services.displayManager.sddm = {
wayland.enable = true;
enable = true;
};
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
xdg = {
autostart.enable = true;
portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal
xdg-desktop-portal-gtk
];
};
};
hardware.opengl.enable = true;
services.spice-vdagentd.enable = true;
}