dotfiles/modules/home/gui/desktop/niri/config/layout.nix
2025-05-16 20:03:42 -05:00

29 lines
655 B
Nix
Executable file

{ colourHelpers, ... }:
{
layout = {
default-column-width = {
proportion = 1.;
};
preset-column-widths = [
{ proportion = 1. / 3.; }
{ proportion = 1. / 2.; }
{ proportion = 2. / 3.; }
{ proportion = 1.; }
];
border = {
enable = true;
width = 2;
active.color = colourHelpers.makeColour colourHelpers.el.base0E;
inactive.color = colourHelpers.makeColour colourHelpers.el.base02;
};
gaps = 5;
shadow = {
enable = true;
color = colourHelpers.el.base11;
draw-behind-window = true;
offset.x = 0;
offset.y = 0;
spread = 3;
};
};
}