Trying out Starship. And almost getting Fish to work with home-manager on mac.. almost
This commit is contained in:
@@ -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 ];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user