From 3fa41c9f97f62e78a1be958bdbdafe5125ff73a3 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 13 Oct 2021 00:00:45 -0400 Subject: [PATCH] feat(hm): add tmux profile --- flake.nix | 1 + users/profiles/tmux.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 users/profiles/tmux.nix diff --git a/flake.nix b/flake.nix index 591075c..b2ac165 100644 --- a/flake.nix +++ b/flake.nix @@ -237,6 +237,7 @@ kitty starship shells.all + tmux ]; }; }; diff --git a/users/profiles/tmux.nix b/users/profiles/tmux.nix new file mode 100644 index 0000000..063c6f1 --- /dev/null +++ b/users/profiles/tmux.nix @@ -0,0 +1,6 @@ +{ ... }: { + programs.tmux = { + enable = true; + clock24 = true; + }; +}