feat: add some extra stuff and fixing tmux

This commit is contained in:
Zhongheng Liu 2024-10-22 18:19:29 +03:00
commit 079708804e
Signed by: steven
GPG key ID: DC8F48E7B4C40905
3 changed files with 16 additions and 0 deletions

View file

@ -11,5 +11,8 @@
android-file-transfer
mtpfs
usbutils
glow
tmux
ranger
];
}

View file

@ -7,5 +7,6 @@
imports = [
./git.nix
./rofi.nix
./tmux.nix
];
}

View file

@ -0,0 +1,12 @@
{
pkgs,
config,
lib,
...
}: {
programs.tmux = {
enable = true;
shell = "${pkgs.fish}/bin/fish";
terminal = "screen-256color"; # Fix for apps not recognising full color
};
}