adds borders to macos tiling

This commit is contained in:
Dennis Schoepf 2026-03-07 17:39:24 +01:00
parent f583fe82d7
commit c694a4b484

View file

@ -1,4 +1,4 @@
{ inputs, ... }:
{ inputs, lib, ... }:
{
flake.modules.darwin.tiling-desktop =
{ pkgs, ... }:
@ -110,5 +110,31 @@
];
};
};
home-manager.sharedModules = [
inputs.self.modules.homeManager.tiling-desktop
];
};
flake.modules.homeManager.tiling-desktop =
{ pkgs, ... }:
{
imports = [
(
{ ... }:
lib.mkIf pkgs.stdenv.isDarwin {
services.jankyborders = {
enable = true;
settings = {
style = "round";
width = 4.0;
hidpi = "on";
active_color = "0xffc57faf";
inactive_color = "0xff1d202f";
};
};
}
)
];
};
}