From fdf1c788488534825abdbfe8f8c0e8e95a876d57 Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Fri, 29 Sep 2023 21:02:23 -0700 Subject: nix: reorg programs into modules --- modules/common.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/common.nix (limited to 'modules/common.nix') diff --git a/modules/common.nix b/modules/common.nix new file mode 100644 index 0000000..747a9cc --- /dev/null +++ b/modules/common.nix @@ -0,0 +1,17 @@ +{ 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 + ]; +} -- cgit v1.2.3