a lot of changes, and spotify thats important too

This commit is contained in:
Doloro1978
2025-09-24 21:46:56 +01:00
parent ff9bbafe4d
commit 5a9746290c
42 changed files with 401 additions and 368 deletions

15
nix/modules/tmux/home.nix Normal file
View File

@@ -0,0 +1,15 @@
{ inputs, pkgs, fetchFromGitHub, ... }:
{
programs.tmux = {
enable = true;
plugins = with pkgs.tmuxPlugins; [
sensible
minimal-tmux-status
];
extraConfig = ''
set-option -g default-terminal "tmux-256color"
set -g status-bg black
set -g status-fg white
'';
};
}