29 lines
730 B
Nix
Executable file
29 lines
730 B
Nix
Executable file
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../modules/common.nix
|
|
../../modules/programs/bat.nix
|
|
../../modules/programs/eza.nix
|
|
../../modules/programs/fzf.nix
|
|
../../modules/programs/git.nix
|
|
../../modules/programs/k9s.nix
|
|
../../modules/programs/micro.nix
|
|
../../modules/programs/ssh.nix
|
|
../../modules/programs/zoxide.nix
|
|
../../modules/programs/zsh.nix
|
|
];
|
|
|
|
programs.ssh.matchBlocks."*".extraOptions = {
|
|
SetEnv = "TERM=xterm-256color";
|
|
};
|
|
programs.zsh = {
|
|
localVariables = {
|
|
SSH_AUTH_SOCK = "/Users/duumxh/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
|
|
};
|
|
shellAliases = {
|
|
nix-upgrade = "sudo darwin-rebuild switch --flake ~/Nix";
|
|
};
|
|
};
|
|
|
|
}
|