diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-02-02 13:37:54 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-02-02 13:37:54 -0700 |
| commit | e776c8fb5aed61d0f5f27a87c9c419dc07a13480 (patch) | |
| tree | bce36bc077042d60c0cc162205440df6b783acdf /modules/home-manager/helix.nix | |
| parent | 930ed23a02259a35c404f2fef0ab61ca620a0e4b (diff) | |
| parent | 60568d28f263c74847f06ec6bc4c8ba7f7125dce (diff) | |
merge
Diffstat (limited to 'modules/home-manager/helix.nix')
| -rw-r--r-- | modules/home-manager/helix.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/home-manager/helix.nix b/modules/home-manager/helix.nix index d93a2ea..1eaebfb 100644 --- a/modules/home-manager/helix.nix +++ b/modules/home-manager/helix.nix @@ -1,11 +1,17 @@ -{ pkgs, catppuccin-helix, ... }: { +{ pkgs, inputs, ... }: { # https://github.com/catppuccin/helix - xdg.configFile."helix/themes".source = "${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" = {}; + # }; + # }; settings = { theme = "catppuccin_mocha"; editor = { |
