summaryrefslogtreecommitdiff
path: root/modules/common.nix
blob: 3cede6e797b31304459849b216f8c778db789c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, pkgs, ... }:

{
  programs.home-manager.enable = true;
  home.sessionVariables = {
    PATH = "$PATH:$HOME/.bin";
    EDITOR = "nvim";
    MANPAGER = "nvim +Man!";
  };

  imports = [
    ./lf.nix
    ./fzf.nix
    ./git.nix
    ./zsh.nix
    ./tmux.nix
  ];
}