22 lines
590 B
Nix
22 lines
590 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.file."Library/Application Support/termscp/config.toml".text = ''
|
|
# termscp configuration file
|
|
# Generated by Nix - see modules/termscp.nix for customization
|
|
|
|
[user_interface]
|
|
text_editor = "${config.home.homeDirectory}/.nix-profile/bin/nvim"
|
|
default_protocol = "SFTP"
|
|
show_hidden_files = true
|
|
check_for_updates = true
|
|
prompt_on_file_replace = true
|
|
notifications = false
|
|
notification_threshold = 536870912
|
|
|
|
[remote]
|
|
ssh_config = "${config.home.homeDirectory}/.ssh/config"
|
|
|
|
[remote.ssh_keys]
|
|
'';
|
|
}
|