Compare commits
No commits in common. "2ec9aae6b72d2157d21c6e974e1adc32daca19ce" and "b4d050a5f89ebd9e56c68a17368a43f0aae96a4f" have entirely different histories.
2ec9aae6b7
...
b4d050a5f8
|
@ -15,5 +15,22 @@ in
|
||||||
# Clear the screen on start and exit
|
# Clear the screen on start and exit
|
||||||
LESS = "-R -+X -c";
|
LESS = "-R -+X -c";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.zsh.localVariables = {
|
||||||
|
# Colored man pages
|
||||||
|
LESS_TERMCAP_mb = "$(tput bold; tput setaf 2)";
|
||||||
|
LESS_TERMCAP_md = "$(tput bold; tput setaf 6)";
|
||||||
|
LESS_TERMCAP_me = "$(tput sgr0)";
|
||||||
|
LESS_TERMCAP_so = "$(tput bold; tput setaf 3; tput setab 4)";
|
||||||
|
LESS_TERMCAP_se = "$(tput rmso; tput sgr0)";
|
||||||
|
LESS_TERMCAP_us = "$(tput bold; tput setaf 2)";
|
||||||
|
LESS_TERMCAP_ue = "$(tput rmul; tput sgr0)";
|
||||||
|
LESS_TERMCAP_mr = "$(tput rev)";
|
||||||
|
LESS_TERMCAP_mh = "$(tput dim)";
|
||||||
|
LESS_TERMCAP_ZN = "$(tput ssubm)";
|
||||||
|
LESS_TERMCAP_ZV = "$(tput rsubm)";
|
||||||
|
LESS_TERMCAP_ZO = "$(tput ssupm)";
|
||||||
|
LESS_TERMCAP_ZW = "$(tput rsupm)";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,11 +10,6 @@ in
|
||||||
config.programs.ssh = lib.mkIf cfg.enable {
|
config.programs.ssh = lib.mkIf cfg.enable {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
includes = [
|
|
||||||
# Local configuration, not-versioned
|
|
||||||
"config.local"
|
|
||||||
];
|
|
||||||
|
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
"github.com" = {
|
"github.com" = {
|
||||||
hostname = "github.com";
|
hostname = "github.com";
|
||||||
|
|
Loading…
Reference in a new issue