split terminal config

This commit is contained in:
Sridhar Ratnakumar 2023-04-08 11:08:04 -04:00
parent 842baf4520
commit 4733c02449
4 changed files with 32 additions and 19 deletions

3
home/bash.nix Normal file
View file

@ -0,0 +1,3 @@
{
programs.bash.enable = true;
};

View file

@ -11,39 +11,24 @@
./terminal.nix
./direnv.nix
./zellij.nix
./nushell.nix
];
programs.nushell = {
enable = true;
envFile.source = ./nushell/env.nu;
configFile.source = ./nushell/config.nu;
};
};
common-linux = {
imports = [
self.homeModules.common
./bash.nix
./vscode-server.nix
];
programs.bash.enable = true;
};
common-darwin = {
imports = [
self.homeModules.common
./zsh.nix
# ./emacs.nix
];
programs.zsh.enable = true;
# This must be envExtra (rather than initExtra), because doom-emacs requires it
# https://github.com/doomemacs/doomemacs/issues/687#issuecomment-409889275
#
# But also see: 'doom env', which is what works.
programs.zsh.envExtra = ''
export PATH=/etc/profiles/per-user/$USER/bin:/run/current-system/sw/bin/:$PATH
# For 1Password CLI. This requires `pkgs.gh` to be installed.
source $HOME/.config/op/plugins.sh
# Because, adding it in .ssh/config is not enough.
# cf. https://developer.1password.com/docs/ssh/get-started#step-4-configure-your-ssh-or-git-client
export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock
'';
};
};
};

8
home/nushell.nix Normal file
View file

@ -0,0 +1,8 @@
{
programs.nushell = {
enable = true;
envFile.source = ./nushell/env.nu;
configFile.source = ./nushell/config.nu;
};
}

17
home/zsh.nix Normal file
View file

@ -0,0 +1,17 @@
{ ... }:
{
programs.zsh.enable = true;
# This must be envExtra (rather than initExtra), because doom-emacs requires it
# https://github.com/doomemacs/doomemacs/issues/687#issuecomment-409889275
#
# But also see: 'doom env', which is what works.
programs.zsh.envExtra = ''
export PATH=/etc/profiles/per-user/$USER/bin:/run/current-system/sw/bin/:$PATH
# For 1Password CLI. This requires `pkgs.gh` to be installed.
source $HOME/.config/op/plugins.sh
# Because, adding it in .ssh/config is not enough.
# cf. https://developer.1password.com/docs/ssh/get-started#step-4-configure-your-ssh-or-git-client
export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock
'';
}