aboutsummaryrefslogtreecommitdiff
path: root/nixos/terminal_workspace/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/terminal_workspace/default.nix')
-rw-r--r--nixos/terminal_workspace/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nixos/terminal_workspace/default.nix b/nixos/terminal_workspace/default.nix
new file mode 100644
index 0000000..862cbb1
--- /dev/null
+++ b/nixos/terminal_workspace/default.nix
@@ -0,0 +1,6 @@
+{ config, pkgs, terminalworkspace, ... }:
+{
+ imports =
+ (if terminalworkspace.tmux then [ ./tmux.nix ] else []) ++
+ (if terminalworkspace].zellij then [ ./zellij.nix ] else []);
+}