summaryrefslogtreecommitdiff
path: root/modules/home-manager/helix.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2024-01-19 12:35:11 -0700
committerDevin Finlinson <devin.finlinson@pm.me>2024-01-19 12:35:11 -0700
commit1a3a567d745e37d16ed0e655fe1b332e0a2d2fb9 (patch)
treeeb5d014cb9f4bab8ad3ed030e485297fa2731412 /modules/home-manager/helix.nix
parent5994480e27da98c03a18c01f5f1beda91be4eec4 (diff)
i finally fixed the inputs issue: when passing inputs as inputs instead of input-name, you must call inputs.input-name
Diffstat (limited to 'modules/home-manager/helix.nix')
-rw-r--r--modules/home-manager/helix.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/home-manager/helix.nix b/modules/home-manager/helix.nix
index 6eb8895..1eaebfb 100644
--- a/modules/home-manager/helix.nix
+++ b/modules/home-manager/helix.nix
@@ -1,6 +1,6 @@
-{ 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;