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/shell.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/shell.nix')
| -rw-r--r-- | modules/home-manager/shell.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix index 612c92a..685cda1 100644 --- a/modules/home-manager/shell.nix +++ b/modules/home-manager/shell.nix @@ -1,4 +1,6 @@ -{nushell-scripts, ... }: { +{inputs, ... }: let + nushell-scripts = inputs.nushell-scripts; +in { programs.nushell = { enable = true; shellAliases = { |
