Trying out Starship. And almost getting Fish to work with home-manager on mac.. almost

master
Dustin Swan 5 years ago
parent ec07703ecb
commit c1f733f190
Signed by: dustinswan
GPG Key ID: AB49BD6B2B3A6377

@ -99,12 +99,12 @@
}; };
programs.zsh = { programs.zsh = {
# programs.fish = {
enable = true; enable = true;
enableAutosuggestions = true; enableAutosuggestions = true;
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ "git" ]; plugins = [ "git" ];
theme = "refined";
}; };
shellAliases = { shellAliases = {
l = "ls -la"; l = "ls -la";
@ -117,14 +117,22 @@
}; };
}; };
programs.starship = {
enable = true;
enableZshIntegration = true;
# enableFishIntegration = true;
};
programs.fzf = { programs.fzf = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
# enableFishIntegration = true; # uhoh, this doesn't exist yet
}; };
programs.broot = { programs.broot = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
# enableFishIntegration = true;
}; };
programs.ssh = { programs.ssh = {
@ -255,6 +263,7 @@
programs.keychain = { programs.keychain = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
# enableFishIntegration = true; # uhoh, this doesn't exist yet either
inheritType = "any"; inheritType = "any";
agents = ["gpg" "ssh"]; agents = ["gpg" "ssh"];
keys = ["id_rsa" "2B3A6377"]; keys = ["id_rsa" "2B3A6377"];

@ -13,6 +13,7 @@
}; };
programs.zsh.initExtra = "source ~/.nix-profile/etc/profile.d/nix.sh"; programs.zsh.initExtra = "source ~/.nix-profile/etc/profile.d/nix.sh";
# programs.fish.interactiveShellInit = "source ~/.nix-profile/etc/profile.d/nix.sh";
imports = [ ./home-common.nix ./home-mail.nix ]; imports = [ ./home-common.nix ./home-mail.nix ];
} }

Loading…
Cancel
Save