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
626 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
# environment
env = MOZ_ENABLE_WAYLAND,1
env = ELECTRON_OZONE_PLATFORM_HINT,auto
2024-03-24 20:51:24 +01:00
# dwindle secion
dwindle {
pseudotile = yes
preserve_split = yes
}
# general section
general {
border_size = 3
col.active_border = rgba(528bffaa) rgba(043a8baa) 45deg
2024-04-01 00:48:04 +02:00
col.inactive_border = rgb(595959)
2024-03-24 20:51:24 +01:00
gaps_in = 5
gaps_out = 20
layout = dwindle
}
misc {
disable_hyprland_logo = true
disable_splash_rendering = true
}
'';
}