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

31 lines
514 B
Nix

{ config, ... }:
{
# include hyprland configs
home.file.".config/hypr/general.conf".text = ''
# dwindle secion
dwindle {
pseudotile = yes
preserve_split = yes
}
# general section
general {
border_size = 3
col.active_border = rgba(528bffaa)
col.inactive_border = rgba(595959aa)
gaps_in = 5
gaps_out = 20
layout = dwindle
}
misc {
disable_hyprland_logo = true
disable_splash_rendering = true
}
'';
}