This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/home/hyprland/hyprland-general.nix

34 lines
635 B
Nix
Raw Normal View History

2024-03-24 20:51:24 +01:00
{ config, ... }:
{
# hyprland general config
wayland.windowManager.hyprland.settings = {
2024-06-03 18:26:53 +02:00
2024-06-04 16:35:06 +02:00
# dwindle section
dwindle = {
pseudotile = true;
preserve_split = true;
special_scale_factor = "0.8";
};
2024-03-24 20:51:24 +01:00
# general section
general = {
border_size = "3";
2024-03-24 20:51:24 +01:00
"col.active_border" = "rgba(528bffaa) rgba(043a8baa) 45deg";
"col.inactive_border" = "rgba(595959aa)";
2024-03-24 20:51:24 +01:00
gaps_in = "5";
gaps_out = "20";
2024-03-24 20:51:24 +01:00
layout = "dwindle";
};
2024-03-24 20:51:24 +01:00
# misc section
misc = {
disable_hyprland_logo = true;
disable_splash_rendering = true;
};
};
2024-03-24 20:51:24 +01:00
}