dotfiles/nix-conf/home/includes/dev-common.nix

33 lines
527 B
Nix
Raw Normal View History

2022-10-22 13:37:23 +00:00
{ 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";
2022-11-07 21:11:09 +00:00
prefix = "C-x";
2022-10-22 13:37:23 +00:00
#tmuxp.enable = true;
extraConfig = ''
set-option -g status-bg '#666666'
set-option -g status-fg '#aaaaaa'
set-option -g status-left-length 50
2022-11-04 12:01:04 +00:00
set-option -g status-right " %a, %b %d - %H:%M "
2022-10-22 13:37:23 +00:00
'';
};
}