Updote to NixOS 21.11
This commit is contained in:
parent
46d404d109
commit
5888a0e26f
4 changed files with 58 additions and 28 deletions
17
home/cli.nix
17
home/cli.nix
|
|
@ -13,7 +13,7 @@
|
|||
username = "alex";
|
||||
homeDirectory = "/home/alex";
|
||||
stateVersion = "21.05";
|
||||
sessionPath = [ "$HOME/.local/bin" ];
|
||||
sessionPath = [ "$HOME/.local/bin" "$HOME/.emacs.d/bin" ];
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
|
@ -68,12 +68,25 @@
|
|||
text = ''
|
||||
set -g default-terminal "tmux-256color"
|
||||
set -g prefix C-z
|
||||
# do not wait for a manually entered escape sequence, just forward it immediately
|
||||
set -g escape-time 0
|
||||
bind-key C-z send-prefix
|
||||
set -g renumber-windows on
|
||||
'';
|
||||
};
|
||||
|
||||
programs = {
|
||||
zsh = {
|
||||
enable = true;
|
||||
enableAutosuggestions = true;
|
||||
# enableSyntaxHighlighting = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [ "git" ];
|
||||
theme = "simple";
|
||||
};
|
||||
};
|
||||
|
||||
# better cat
|
||||
bat.enable = true;
|
||||
|
||||
|
|
@ -89,7 +102,7 @@
|
|||
|
||||
gh = {
|
||||
enable = true;
|
||||
gitProtocol = "ssh";
|
||||
settings.git_protocol = "ssh";
|
||||
};
|
||||
|
||||
git = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue