summaryrefslogtreecommitdiff
path: root/home/home-minimal.nix
blob: f28240a576f9952f29678088258a533fecd79d99 (plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{ config, lib, pkgs, inputs, ... }:

{
  # Let Home Manager install and manage itself.
  programs.home-manager.enable = true;

  imports = [
    ./packages-minimal.nix
  ];

  home = {
    stateVersion = "21.03";
    homeDirectory = "/home/stuebinm";
    username = "stuebinm";
    sessionVariables.MANPAGER = "sh -c 'col -bx | bat -l man -p'";
  };

  home.keyboard.options = [ "caps:escape" ];

  programs.bash = {
    enable = true;
    historyControl = [ "ignoredups" "ignorespace" ];
    historyFileSize = 10000;

    # set shell prompt & tty for the gnu pinentry (otherwise gnupg will crash)
    initExtra = ''
      export GPG_TTY=`tty`
      # this shouldn't be necessary, but apparently nix is broken ...
      NIX_PATH=$HOME/.nix-defexpr/channels''${NIX_PATH:+:}$NIX_PATH
      PS1='\[\033[1;36m\] >>> [\j|\u@\w]\$: \[\033[00m\]'
    '';

    shellAliases = {
      ll = "ls -slF";
    };
  };

  programs.starship = {
    enable = true;
    enableBashIntegration = true;
    enableFishIntegration = true;
    settings = {
      directory.truncation_length = 10;
    };
  };

  programs.fish = {
    enable = true;
    shellAliases = {
      nix-shell = "nix-shell --command fish";
      le = "exa";
      ll = "exa -lh --icons";
      llt = "exa -lh --tree --icons";
      lt = "exa --tree --icons";
    };
    functions = {
      fish_greeting = {
        body = "";
      };
    };
  };

  programs.bat = {
    enable = true;
    config.wrap = "never";
  };

  programs.git = {
    enable = true;
    package = pkgs.gitAndTools.gitFull;
    userEmail = "stuebinm@disroot.org";
    userName = "stuebinm";

    signing = {
      # signByDefault = true;
      key = "0x8FBE8AAD32FA12B7";
    };

    extraConfig = {
      log.showSignature = true;
      init.defaultBranch = "main";
      alias.search = "!git log --format='tformat:%h %cs %s' --no-show-signature | fzf --multi --preview 'git show {+1}|bat -p -lpatch --color=always'";
    };

    # diff-so-fancy.enable = true;
    # difftastic.enable = true;
    delta = {
      enable = false;
      options = {
        decorations = {
          commit-decoration-style = "bold yellow";
          file-decoration-style = "bold blue";
          file-style = "bold yellow";
        };
        features = "decorations line-numbers navigate";
        whitespace-error-style = "22 reverse";
      };
    };
  };

  programs.mercurial = {
    enable = true;
    userName = "stuebinm";
    userEmail = "stuebinm@disroot.org";
    extraConfig.extensions.rebase = "";
  };

  programs.htop = {
    package = pkgs.htop-vim;
    enable = true;
    settings = {
      fields = "0 48 17 18 38 46 47 49 1";
      sort_key = 46;
      sort_direction = -1;
      hide_kernel_threads = 1;
      hide_userland_threads = 0;
      shadow_other_users = 1;
      show_program_path = 0;
      highlight_base_name = 1;
      find_comm_in_cmdline = 1;
      header_margin = 1;
      show_cpu_usage = 1;
      color_scheme = 5;
      enable_mouse = 1;
      delay = 15;
      header_layout = "two_67_33";
      column_meters_0 = "AllCPUs Memory Swap";
      column_meter_modes_0 = "1 1 1";
      column_meters_1 = "Tasks LoadAverage Uptime NetworkIO";
      column_meter_modes_1 = "2 2 2 2";
    };
  };

}