about summary refs log tree commit diff
path: root/users/multi/whitby/home-manager.nix
blob: 92281aebb011860a6a148010b178bb3cac7c23a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{ config ? throw "not a readTree target", pkgs, depot, ... }:

let
  hmPath = "$HOME/nix/home-manager";

in

{
  programs = {
    home-manager = { enable = true; path = hmPath; };

    bash = {
      enable = true;
      initExtra = ''
        bind '"\e[5~":history-search-backward'
        bind '"\e[6~":history-search-forward'

        PS1="[\\u@\\h:\\w]\\\$ "

        _Z_CMD=d
        source ~/.z.sh
      '';
    };

    tmux = {
      enable = true;
      terminal = "tmux-256color";
      escapeTime = 50;
      extraConfig = ''
        bind-key -n C-S-Left swap-window -t -1
        bind-key -n C-S-Right swap-window -t +1
      '';
    };

    vim = {
      enable = true;
      extraConfig = "set mouse=";
    };
  };

  home.sessionVariables = {
    NIX_PATH =
      "nixpkgs=$HOME/nix/nixpkgs:" +
      "home-manager=${hmPath}:" +
      "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 = [
    pkgs.lsof
    pkgs.strace
    pkgs.file
    pkgs.pciutils
  ] ++ (import ../pkgs { inherit pkgs; });

  home.file = {
    z = {
      source = builtins.fetchurl "https://raw.githubusercontent.com/rupa/z/master/z.sh";
      target = ".z.sh";
    };
  };


  home.stateVersion = "20.03";
}