ref(nix): dropped tmux legacy support

This commit is contained in:
Léana 江 2024-01-19 21:45:51 +01:00 committed by Léana 江
parent 81abd93ffb
commit 710441a578
3 changed files with 15 additions and 6 deletions

View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
home.file = {
tmux = {
source = ./tmux.conf;
target = ".tmux.conf";
};
};
home.packages = [pkgs.tmux];
}