From 8ca6fd79adc12d8b249bfbff9a9ecdb5a6691633 Mon Sep 17 00:00:00 2001 From: Dennis Schoepf Date: Sat, 10 Jan 2026 16:24:15 +0100 Subject: [PATCH] uses tmux on linux --- home/linux.nix | 3 ++- hosts/dnsc-machine/default.nix | 9 +-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/home/linux.nix b/home/linux.nix index cc52cb5..e9bb96b 100644 --- a/home/linux.nix +++ b/home/linux.nix @@ -39,6 +39,7 @@ krita gpustat librewolf + tmux ]; imports = [ @@ -49,7 +50,7 @@ ../modules/nvim ../modules/ghostty/linux.nix ../modules/fish - ../modules/zellij + ../modules/tmux ../modules/mpv ../modules/zen ../modules/wm/swaync diff --git a/hosts/dnsc-machine/default.nix b/hosts/dnsc-machine/default.nix index 0bc92e9..bdc41a3 100644 --- a/hosts/dnsc-machine/default.nix +++ b/hosts/dnsc-machine/default.nix @@ -28,7 +28,6 @@ # Overlays for all devices are defined # in flake.nix nixpkgs.overlays = [ - inputs.zellij-switch.overlays.default (final: prev: { python3Packages = prev.python3Packages // { python-dbusmock = @@ -70,13 +69,7 @@ }; # System Packages - environment.systemPackages = lib.mkAfter ( - with pkgs; - [ - zellij - zellij-switch - ] - ); + environment.systemPackages = lib.mkAfter (with pkgs; [ ]); # Enable some services that do not need configuration services.openssh.enable = true;