diff --git a/modules/software/shells/fish.nix b/modules/software/shells/fish.nix index 317e540..b3bb8cd 100644 --- a/modules/software/shells/fish.nix +++ b/modules/software/shells/fish.nix @@ -1,14 +1,15 @@ -{ ... }:{ +{pkgs, ...}: { programs = { fish = { enable = true; useBabelfish = true; shellInit = '' starship init fish | source - ''; + ''; }; - nix-index.enableFishIntegration = true; - direnv.enableFishIntegration = true; - foot.enableFishIntegration = true; + nix-index.enableFishIntegration = true; + direnv.enableFishIntegration = true; + foot.enableFishIntegration = true; }; + environment.systemPackages = [pkgs.starship]; } diff --git a/modules/software/shells/zsh.nix b/modules/software/shells/zsh.nix index eb0baa8..62b4a41 100644 --- a/modules/software/shells/zsh.nix +++ b/modules/software/shells/zsh.nix @@ -1,4 +1,4 @@ -{ ... }:{ +{...}: { system.userActivationScripts.zshrc = "touch .zshrc"; programs.zsh = {