This commit is contained in:
jmarkin 2025-11-01 22:42:56 +03:00
parent a84d501ab9
commit 5f068937f8
4 changed files with 21 additions and 18 deletions

View file

@ -294,11 +294,11 @@
]
},
"locked": {
"lastModified": 1761878381,
"narHash": "sha256-lCRaipHgszaFZ1Cs8fdGJguVycCisBAf2HEFgip5+xU=",
"lastModified": 1762025346,
"narHash": "sha256-6KR4dsNfA3Pqm6uT8j7aKjWydP/KXFqZUhOfMlfP+1E=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "4ac96eb21c101a3e5b77ba105febc5641a8959aa",
"rev": "87044c57222fb485974062e2dd557e7b8abd8fff",
"type": "github"
},
"original": {
@ -432,11 +432,11 @@
"yaml-nvim": "yaml-nvim"
},
"locked": {
"lastModified": 1762024179,
"narHash": "sha256-rSAb7luKMvjCABl/VMeQ6oHTZ5Ge0suy2IN1iQafmeI=",
"lastModified": 1762026035,
"narHash": "sha256-sNrEhcRZveN24S0wofavwdzlgwwhbxdkOz+t5D9f33A=",
"ref": "refs/heads/master",
"rev": "b260ce02d2b6c3b4ef0007decfd319e6e2d88ff8",
"revCount": 43,
"rev": "09cb23c371f44130cb5eae0e31b9f95bfea182d6",
"revCount": 44,
"type": "git",
"url": "https://git.jmarkin.ru/jmarkin/nvim-nix"
},

View file

@ -15,21 +15,11 @@ let
src = smartsplits;
});
# before release 3.5
tmux = pkgs.tmux.overrideAttrs (oldAttrs: {
version = "2025-10-31";
src = pkgs.fetchFromGitHub {
owner = "tmux";
repo = "tmux";
rev = "be2d4aa43498a6c36d9f30f4ccedb3347882ad42";
sha256 = "sha256-3sDOck9iAg7l/XP23ae+k8gevUwLALDOojGz1d3Oml4=";
};
});
in
{
programs.bash.shellAliases.ta = "tmux attach || env -u __ETC_PROFILE_NIX_SOURCED tmux";
programs.tmux = {
package = tmux;
package = pkgs.tmux;
enable = true;
shell = "${pkgs.bash}/bin/bash";
# shell = "${pkgs.fish}/bin/fish";

View file

@ -10,6 +10,8 @@
(import ./createnv.nix)
(import ./vpn_slice.nix)
# before release 3.5
(import ./tmux.nix)
# disable build always time
(self: super: {

11
overlays/tmux.nix Normal file
View file

@ -0,0 +1,11 @@
self: pkgs: {
tmux = pkgs.tmux.overrideAttrs (oldAttrs: {
version = "2025-10-31";
src = pkgs.fetchFromGitHub {
owner = "tmux";
repo = "tmux";
rev = "be2d4aa43498a6c36d9f30f4ccedb3347882ad42";
sha256 = "sha256-3sDOck9iAg7l/XP23ae+k8gevUwLALDOojGz1d3Oml4=";
};
});
}