Compare commits

..

2 Commits

Author SHA1 Message Date
892e5681a1 change portal to hyprland
All checks were successful
nixos config pipeline / show-flake (push) Successful in 55s
nixos config pipeline / deploy (push) Successful in 1m6s
2026-04-22 16:33:36 +02:00
91c03b7751 add clipboard history 2026-04-22 16:33:05 +02:00
3 changed files with 6 additions and 1 deletions

View File

@ -26,6 +26,9 @@ bind = $mainMod, F, fullscreen
bind = $mainMod, T, togglefloating
bind = , XF86Calculator, exec, $calc
# Clipboard history
bind = $mainMod, V, exec, cliphist list | wofi -dmenu | cliphist decode | wl-copy
# Change Wallpaper
bind = $mainMod SHIFT, W, exec, echo trigger > /tmp/wallpaper-trigger

View File

@ -33,6 +33,8 @@ exec = killall waybar && waybar
exec-once = mako
exec-once = systemctl --user start hyprpolkitagent
exec-once = [workspace 10 silent] thunderbird
exec-once = wl-paste --type text --watch cliphist store
exec-once = wl-paste --type image --watch cliphist store
#############################

View File

@ -21,7 +21,7 @@ in
};
xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono ];