Files
NubNix/home-manager/10_hypr/06_layouts.nix
2025-11-13 14:15:48 +00:00

20 lines
508 B
Nix

{ config, pkgs, ... }:
{
home.file.".config/hypr/06_layouts.conf".text = ''
# LAYOUTS
dwindle {
pseudotile = true
preserve_split = true
}
master {
new_status = master
}
misc {
force_default_wallpaper = 0
disable_hyprland_logo = true
}
'';
}