diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-01-19 12:35:11 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-01-19 12:35:11 -0700 |
| commit | 1a3a567d745e37d16ed0e655fe1b332e0a2d2fb9 (patch) | |
| tree | eb5d014cb9f4bab8ad3ed030e485297fa2731412 /modules/home-manager/starship.nix | |
| parent | 5994480e27da98c03a18c01f5f1beda91be4eec4 (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/starship.nix')
| -rw-r--r-- | modules/home-manager/starship.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/home-manager/starship.nix b/modules/home-manager/starship.nix index 12d6f6b..eafc03c 100644 --- a/modules/home-manager/starship.nix +++ b/modules/home-manager/starship.nix @@ -1,4 +1,4 @@ -{ catppuccin-starship, ... }: { +{ inputs, ... }: { programs.starship = { enable = true; @@ -6,6 +6,6 @@ command_timeout = 1000; palette = "catppuccin_mocha"; - } // builtins.fromTOML (builtins.readFile "${catppuccin-starship}/palettes/mocha.toml"); + } // builtins.fromTOML (builtins.readFile "${inputs.catppuccin-starship}/palettes/mocha.toml"); }; -}
\ No newline at end of file +} |
