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

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

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

@ -13,6 +13,7 @@
};
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 ];
}

Loading…
Cancel
Save