tmate: Init

pull/48/head
Simon Bruder 2021-02-18 16:37:45 +01:00
parent e0ef586e5e
commit 94f3aae5b9
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 13 additions and 0 deletions

View File

@ -15,6 +15,7 @@
./programs.nix
./scripts.nix
./sway.nix
./tmate.nix
./tmux.nix
./vdirsyncer.nix
./xcompose.nix

View File

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