diff --git a/hosts/darwin/home-default.nix b/hosts/darwin/home-default.nix index 8a82358..0cb61ca 100644 --- a/hosts/darwin/home-default.nix +++ b/hosts/darwin/home-default.nix @@ -9,7 +9,6 @@ ../../modules/ssh.nix ../../modules/git.nix ../../modules/lazygit.nix - ../../modules/termscp.nix ../../modules/rsync.nix ../../modules/btop.nix ../../modules/firefox.nix diff --git a/hosts/nixos/home-default.nix b/hosts/nixos/home-default.nix index af6a4e7..c3bbca2 100644 --- a/hosts/nixos/home-default.nix +++ b/hosts/nixos/home-default.nix @@ -9,7 +9,6 @@ ../../modules/ssh.nix ../../modules/git.nix ../../modules/lazygit.nix - ../../modules/termscp.nix ../../modules/rsync.nix ../../modules/btop.nix ../../modules/claude-code.nix diff --git a/modules/termscp.nix b/modules/termscp.nix deleted file mode 100644 index dc32755..0000000 --- a/modules/termscp.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ config, pkgs, lib, ... }: - -{ - # Install termscp package - home.packages = [ pkgs.termscp ]; - home.file.${if pkgs.stdenv.isDarwin then "Library/Application Support/termscp/config.toml" else ".config/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] - ''; -}