feat: abstracted out window manager tile gapp

This commit is contained in:
Nick 2025-05-18 16:53:29 -05:00
parent 17d2832b06
commit 93efd494ca
9 changed files with 17 additions and 12 deletions

View file

@ -1,4 +1,7 @@
{ colourHelpers, ... }:
{ colourHelpers, flake, ... }:
let
inherit (flake.config.aesthetics.themes) wmGaps;
in
{
layout = {
default-column-width = {
@ -16,7 +19,7 @@
active.color = colourHelpers.makeColour colourHelpers.el.base0E;
inactive.color = colourHelpers.makeColour colourHelpers.el.base02;
};
gaps = 5;
gaps = wmGaps;
shadow = {
enable = true;
color = colourHelpers.el.base11;

View file

@ -50,7 +50,7 @@ let
osConfig
;
};
layout = import (configPath + /layout.nix) { inherit colourHelpers; };
layout = import (configPath + /layout.nix) { inherit colourHelpers flake; };
main = import (configPath + /main.nix);
outputs = import (configPath + /outputs.nix) {
inherit