dotfiles/home/by-host/endurance/niri/default.nix
Christopher Mühl ceb5ee4356
feat: add cliphist clipboard history manager with Mod+v keybind
Enables clipboard history for both Niri and Hyprland compositors:
- Added wl-clipboard and cliphist packages to Niri
- Configured clipboard watchers for text and images in Niri autostart
- Bound Mod+v to open clipboard history via fuzzel in both compositors

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

21 lines
261 B
Nix

{
inputs,
pkgs,
...
}: {
imports = [
inputs.niri.homeModules.niri
./settings.nix
./window-rules.nix
./keybinds.nix
./autostart.nix
./shell.nix
];
home.packages = with pkgs; [
fuzzel
wl-clipboard
cliphist
];
}