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

13 lines
206 B
Nix

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