snowflake/home/wayland/hyprland/default.nix

12 lines
201 B
Nix
Raw Normal View History

2023-04-23 17:45:37 -04:00
{...}: {
2023-07-21 09:04:06 -04:00
imports = [
./settings.nix
];
2023-02-05 09:06:16 -05:00
wayland.windowManager.hyprland = {
enable = true;
2023-07-21 09:04:06 -04:00
enableNvidiaPatches = true;
systemdIntegration = true;
xwayland.enable = true;
2023-02-05 09:06:16 -05:00
};
2023-04-23 17:45:37 -04:00
}