dotfiles/home/by-host/endurance/hyprland/default.nix
Christopher Mühl 7af406f315
feat: add Hyprland as an additional compositor alongside Niri
Enables programs.hyprland at the system level, adds xdg-desktop-portal-hyprland
with per-compositor portal routing, and wires up a home-manager config for
endurance mirroring the Niri layout (same keybinds, monitors, window rules).
Niri remains the default SDDM session.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-19 10:53:30 +01:00

15 lines
228 B
Nix

{pkgs, ...}: {
imports = [
./settings.nix
./keybinds.nix
./window-rules.nix
];
wayland.windowManager.hyprland.enable = true;
home.packages = with pkgs; [
wl-clipboard
cliphist
hyprpicker
];
}