shell updates + k9s theming
This commit is contained in:
parent
e0ee8096bb
commit
e0bf6e4467
2 changed files with 74 additions and 14 deletions
64
mbp/home.nix
64
mbp/home.nix
|
|
@ -16,6 +16,7 @@
|
|||
sops
|
||||
deploy-rs
|
||||
kubernetes-helm
|
||||
kubectx
|
||||
fzf-preview
|
||||
zsh-fzf-tab
|
||||
zsh-forgit
|
||||
|
|
@ -28,11 +29,13 @@
|
|||
};
|
||||
|
||||
programs = {
|
||||
|
||||
ssh = {
|
||||
matchBlocks."*" = { identityAgent = "/Users/duumxh/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh"; };
|
||||
enableDefaultConfig = false;
|
||||
enable = true;
|
||||
};
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
userName = "Den Afanasyev";
|
||||
|
|
@ -46,7 +49,7 @@
|
|||
|
||||
prezto = {
|
||||
prompt = {
|
||||
theme = "pure";
|
||||
theme = "powerlevel10k";
|
||||
};
|
||||
enable = true;
|
||||
};
|
||||
|
|
@ -69,7 +72,12 @@
|
|||
expireDuplicatesFirst = true;
|
||||
};
|
||||
initContent = lib.mkOrder 500 ''
|
||||
echo "Hey there raccoon! 🦝🍁"
|
||||
source ~/.p10k.zsh
|
||||
export PURE_GIT_PULL=0
|
||||
export SSH_AUTH_SOCK=/Users/duumxh/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
|
||||
export TELEPORT_ADD_KEYS_TO_AGENT=no
|
||||
export K9S_SKIN="transparent"
|
||||
echo "Hey there raccoon! 🦝🍁"
|
||||
'';
|
||||
#localVariables = {};
|
||||
|
||||
|
|
@ -138,6 +146,58 @@
|
|||
scrollbar = true;
|
||||
};
|
||||
enable = true;
|
||||
};
|
||||
|
||||
k9s = {
|
||||
skins = {
|
||||
transparent = {
|
||||
k9s = {
|
||||
body.bgColor = "default";
|
||||
prompt.bgColor = "default";
|
||||
info.sectionColor = "default";
|
||||
dialog = {
|
||||
bgColor = "default";
|
||||
labelFgColor = "default";
|
||||
fieldFgColor = "default";
|
||||
};
|
||||
frame = {
|
||||
crumbs.bgColor = "default";
|
||||
title = {
|
||||
bgColor = "default";
|
||||
counterColor = "default";
|
||||
};
|
||||
menu.fgColor = "default";
|
||||
};
|
||||
views = {
|
||||
charts.bgColor = "default";
|
||||
table = {
|
||||
bgColor = "default";
|
||||
header = {
|
||||
fgColor = "default";
|
||||
bgColor = "default";
|
||||
};
|
||||
};
|
||||
xray.bgColor = "default";
|
||||
logs = {
|
||||
bgColor = "default";
|
||||
indicator = {
|
||||
bgColor = "default";
|
||||
toggleOnColor = "default";
|
||||
toggleOffColor = "default";
|
||||
};
|
||||
};
|
||||
yaml = {
|
||||
colonColor = "default";
|
||||
valueColor = "default";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
enable = true;
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
home-manager.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue