nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit 35fb659c5325c0c723f97de3b1786de95fc94228
parent 849daaa96f459438694192693c52783edf173699
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Tue, 16 Dec 2025 11:53:14 +0000

Add clipse and associated hyprland config

Diffstat:
Ahome/clipse.nix | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/home/clipse.nix b/home/clipse.nix @@ -0,0 +1,18 @@ +{ lib, ... }: +{ + services.clipse = { + enable = true; + }; + + wayland.windowManager.hyprland.settings = { + bind = [ + "SUPER, V, exec, alacritty --class clipse -e 'clipse'" + ]; + + windowrulev2 = [ + "float,class:(clipse)" + "size 622 652,class:(clipse)" + ]; + }; + +}