feat(users/multi): synchronise local changes on whitby.
Change-Id: I9330c9905e772ab7bbfea12728a1dff9c0d1718f Reviewed-on: https://cl.tvl.fyi/c/depot/+/1992 Tested-by: BuildkiteCI Reviewed-by: multi <depot@in-addr.xyz>
This commit is contained in:
parent
5528a9aa6f
commit
991bf53270
1 changed files with 15 additions and 1 deletions
|
@ -12,6 +12,9 @@ in
|
|||
bash = {
|
||||
enable = true;
|
||||
initExtra = ''
|
||||
bind '"\e[5~":history-search-backward'
|
||||
bind '"\e[6~":history-search-forward'
|
||||
|
||||
PS1="[\\u@\\h:\\w]\\\$ "
|
||||
|
||||
_Z_CMD=d
|
||||
|
@ -28,6 +31,11 @@ in
|
|||
bind-key -n C-S-Right swap-window -t +1
|
||||
'';
|
||||
};
|
||||
|
||||
vim = {
|
||||
enable = true;
|
||||
extraConfig = "set mouse=";
|
||||
};
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
|
@ -37,9 +45,15 @@ in
|
|||
"depot=$HOME/nix/depot:" +
|
||||
"/nix/var/nix/profiles/per-user/root/channels";
|
||||
HOME_MANAGER_CONFIG = <depot/users/multi/whitby/home-manager.nix>;
|
||||
EDITOR = "vim";
|
||||
};
|
||||
|
||||
home.packages = (import ../pkgs { inherit pkgs; });
|
||||
home.packages = [
|
||||
pkgs.lsof
|
||||
pkgs.strace
|
||||
pkgs.file
|
||||
pkgs.pciutils
|
||||
] ++ (import ../pkgs { inherit pkgs; });
|
||||
|
||||
home.file = {
|
||||
z = {
|
||||
|
|
Loading…
Reference in a new issue