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>
15 lines
228 B
Nix
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
|
|
];
|
|
}
|