From 67f8024c58eeb75cf4203371010021000440af06 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Sun, 9 Nov 2025 04:52:01 -0700 Subject: home-manager cannot support simultaneous adding and importing themes --- modules/home-manager/helix.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'modules/home-manager') diff --git a/modules/home-manager/helix.nix b/modules/home-manager/helix.nix index cbcd6c0..604a44e 100644 --- a/modules/home-manager/helix.nix +++ b/modules/home-manager/helix.nix @@ -1,20 +1,20 @@ { pkgs, inputs, ... }: { # https://github.com/catppuccin/helix - xdg.configFile."helix/themes".source = "${inputs.catppuccin-helix}/themes/default"; + # xdg.configFile."helix/themes".source = "${inputs.catppuccin-helix}/themes/default"; programs.helix = { enable = true; package = pkgs.helix; # defaultEditor = true; - # themes = { - # custom = { - # "inherits" = "catpuccin_mocha"; - # "ui.background" = {}; - # }; - # }; + themes = { + catppuccin_mocha_transparent = { + "inherits" = "catppuccin_mocha"; + "ui.background" = {}; + }; + }; settings = { - # theme = "catppuccin_mocha"; - theme = "base16_transparent"; + theme = "catppuccin_mocha_transparent"; + # theme = "base16_transparent"; editor = { line-number = "relative"; cursorline = true; -- cgit v1.2.3