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

17 lines
322 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2021-2022 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
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 /etc/tmux.conf
2021-02-18 16:37:45 +01:00
'';
}