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

35 lines
601 B
Nix
Raw Normal View History

2024-03-24 20:51:24 +01:00
{ config, ... }:
{
# include hyprland configs
home.file.".config/hypr/general.conf".text = ''
2024-06-03 18:26:53 +02:00
2024-03-24 20:51:24 +01:00
# dwindle secion
dwindle {
pseudotile = yes
preserve_split = yes
special_scale_factor = 0.8
2024-03-24 20:51:24 +01:00
}
# general section
general {
border_size = 3
col.active_border = rgba(528bffaa) rgba(043a8baa) 45deg
col.inactive_border = rgba(2b2a33aa)
2024-03-24 20:51:24 +01:00
gaps_in = 5
gaps_out = 20
layout = dwindle
}
# misc section
2024-03-24 20:51:24 +01:00
misc {
disable_hyprland_logo = true
disable_splash_rendering = true
}
2024-03-24 20:51:24 +01:00
'';
}