diff --git a/modules/nix/style/modules/fuzzel.nix b/modules/nix/style/modules/fuzzel.nix deleted file mode 100644 index 2cdf86a..0000000 --- a/modules/nix/style/modules/fuzzel.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - lib, - config, - ... -}: let - cfg = config.local.style; - inherit (cfg) scheme; -in { - config.home-manager.sharedModules = lib.mkIf cfg.enable [ - { - programs.fuzzel.settings = { - main = { - font = "sans-serif:size=16"; - }; - colors = with scheme.palette; { - background = "${base01}f2"; - text = "${base05}ff"; - match = "${base0E}ff"; - selection = "${base03}ff"; - selection-text = "${base06}ff"; - selection-match = "${base0E}ff"; - border = "${base0E}ff"; - }; - }; - } - ]; -} diff --git a/modules/nix/style/modules/niri.nix b/modules/nix/style/modules/niri.nix deleted file mode 100644 index a25b136..0000000 --- a/modules/nix/style/modules/niri.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ - lib, - config, - ... -}: let - cfg = config.local.style; -in { - config.home-manager.sharedModules = lib.mkIf cfg.enable [ - { - programs.niri = { - settings = { - layout.focus-ring.active.color = cfg.scheme.palette.base0D; - cursor = { - inherit (cfg.cursorTheme) size; - theme = cfg.cursorTheme.name; - }; - }; - }; - } - ]; -} diff --git a/modules/nix/style/modules/swaylock.nix b/modules/nix/style/modules/swaylock.nix deleted file mode 100644 index b5e13c7..0000000 --- a/modules/nix/style/modules/swaylock.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ - lib, - config, - ... -}: let - cfg = config.local.style; -in { - config.home-manager.sharedModules = with cfg.scheme.palette; - lib.mkIf cfg.enable [ - { - programs.swaylock.settings = { - inside-color = base01; - line-color = base01; - ring-color = base05; - text-color = base05; - - inside-clear-color = base0A; - line-clear-color = base0A; - ring-clear-color = base00; - text-clear-color = base00; - - inside-caps-lock-color = base03; - line-caps-lock-color = base03; - ring-caps-lock-color = base00; - text-caps-lock-color = base00; - - inside-ver-color = base0D; - line-ver-color = base0D; - ring-ver-color = base00; - text-ver-color = base00; - - inside-wrong-color = base08; - line-wrong-color = base08; - ring-wrong-color = base00; - text-wrong-color = base00; - - caps-lock-bs-hl-color = base08; - caps-lock-key-hl-color = base0D; - bs-hl-color = base08; - key-hl-color = base0D; - - separator-color = "#00000000"; # transparent - layout-bg-color = "#00000050"; # semi-transparent black - }; - } - ]; -}