about summary refs log blame commit diff stats
path: root/nix-conf/home/includes/dev-common.nix
blob: d569566a2a0ac425c7f7bb02d76495c8c9ccd730 (plain) (tree)



















                                 
                   




                                         
                                                      




       
{ config, pkgs, ... }:
{

  imports = [
    ./common.nix
    ./clojure.nix
  ];

  home.packages = with pkgs; [
    docker
    docker-compose
    gopass-jsonapi
    mpv
    mu
    neovim
  ];

  programs.tmux = {
    enable = true;
    terminal = "screen-256color";
    prefix = "C-x";
    #tmuxp.enable = true;
    extraConfig = ''
      set-option -g status-bg '#666666'
      set-option -g status-fg '#aaaaaa'
      set-option -g status-left-length 50
      set-option -g status-right " %a, %b %d - %H:%M "
    '';
  };

}