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 = {
|
bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
|
bind '"\e[5~":history-search-backward'
|
||||||
|
bind '"\e[6~":history-search-forward'
|
||||||
|
|
||||||
PS1="[\\u@\\h:\\w]\\\$ "
|
PS1="[\\u@\\h:\\w]\\\$ "
|
||||||
|
|
||||||
_Z_CMD=d
|
_Z_CMD=d
|
||||||
|
@ -28,6 +31,11 @@ in
|
||||||
bind-key -n C-S-Right swap-window -t +1
|
bind-key -n C-S-Right swap-window -t +1
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vim = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = "set mouse=";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
@ -37,9 +45,15 @@ in
|
||||||
"depot=$HOME/nix/depot:" +
|
"depot=$HOME/nix/depot:" +
|
||||||
"/nix/var/nix/profiles/per-user/root/channels";
|
"/nix/var/nix/profiles/per-user/root/channels";
|
||||||
HOME_MANAGER_CONFIG = <depot/users/multi/whitby/home-manager.nix>;
|
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 = {
|
home.file = {
|
||||||
z = {
|
z = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue