Files
nixos-config/modules/unused/hypr/pyprland.nix

24 lines
381 B
Nix
Raw Normal View History

2025-12-07 23:53:43 -05:00
{
pkgs,
...
}:
{
home.packages = with pkgs; [
pyprland
];
xdg.configFile."hypr/pyprland.toml".text = ''
[pyprland]
plugins = ["scratchpads"]
[scratchpads.term]
command = "foot --app-id term_dropdown"
class = "term_dropdown"
animation = "fromTop"
margin = 150
size = "80% 80%"
2025-12-07 23:53:43 -05:00
max_size = "1920px 1080px"
multi = false
'';
}