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>
21 lines
261 B
Nix
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
|
|
];
|
|
}
|