Files
parana/modules/hyprland/pyprland.nix
2026-07-10 20:07:29 -04:00

18 lines
340 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [pyprland];
home.file.".config/hypr/pyprland.toml".text = ''
[pyprland]
plugins = ["scratchpads"]
[scratchpads.term]
animation = "fromTop"
command = "kitty --class floating-term"
class = "floating-term"
size = "60% 60%"
position = "center"
on_open = "move cursor 0 0"
lazy = true
'';
}