home: Specify slight corner rounding

This commit is contained in:
Mikael 2024-08-26 20:04:02 +02:00
parent 82c695b4af
commit bfd689523a
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0

View file

@ -109,6 +109,18 @@ in lib.mkIf (osConfig.hardware.graphics.enable or false) {
];
};
window-rules = [
{
clip-to-geometry = true;
geometry-corner-radius = {
top-left = 4.0;
top-right = 4.0;
bottom-left = 4.0;
bottom-right = 4.0;
};
}
];
binds = with config.lib.niri.actions; {
# Application spawning
"Mod+Return".action = spawn [ kitty ];