nixos-config/users/simon/modules/tmate.nix

13 lines
204 B
Nix
Raw Normal View History

2021-02-18 16:37:45 +01:00
{ lib, pkgs, ... }:
{
home.packages = with pkgs; [
tmate
];
home.file.".tmate.conf".text = ''
set tmate-authorized-keys "~/.ssh/authorized_keys_tmate"
source-file ~/.tmux.conf
'';
}