13 lines
204 B
Nix
13 lines
204 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
tmate
|
|
];
|
|
|
|
home.file.".tmate.conf".text = ''
|
|
set tmate-authorized-keys "~/.ssh/authorized_keys_tmate"
|
|
source-file ~/.tmux.conf
|
|
'';
|
|
}
|