diff --git a/homes/me/default.nix b/homes/me/default.nix index 6df442b..5f4c039 100755 --- a/homes/me/default.nix +++ b/homes/me/default.nix @@ -8,14 +8,16 @@ ... } @ args: { imports = [ + ../modules/fish.nix + ../modules/btop.nix + ../modules/tmux.nix + ../modules/term/foot.nix ../modules/git.nix ../modules/bat.nix - ../modules/fish.nix + ../modules/editor/helix.nix (import ../modules/editor/vscode.nix args) - ../modules/btop.nix - ../modules/term/foot.nix ../modules/firefox.nix ../modules/apps/thunderbird.nix diff --git a/homes/modules/tmux.nix b/homes/modules/tmux.nix new file mode 100644 index 0000000..e5946c0 --- /dev/null +++ b/homes/modules/tmux.nix @@ -0,0 +1,5 @@ +{...}: { + programs.tmux = { + enable = true; + }; +}