diff --git a/homes/x86_64-darwin/harald@mpro.fritz.box/default.nix b/homes/x86_64-darwin/harald@mpro.fritz.box/default.nix index d68ac9d..eab10ff 100644 --- a/homes/x86_64-darwin/harald@mpro.fritz.box/default.nix +++ b/homes/x86_64-darwin/harald@mpro.fritz.box/default.nix @@ -27,8 +27,6 @@ }; tools = { direnv.enable = true; - alacritty.enable = true; - ssh.enable = true; # jetbrains.enable = true; }; }; diff --git a/homes/x86_64-linux/harald@sgx-nixos/default.nix b/homes/x86_64-linux/harald@sgx-nixos/default.nix index 41a59db..7504363 100644 --- a/homes/x86_64-linux/harald@sgx-nixos/default.nix +++ b/homes/x86_64-linux/harald@sgx-nixos/default.nix @@ -27,7 +27,6 @@ }; tools = { direnv.enable = true; - ssh.enable = true; # jetbrains.enable = true; }; }; diff --git a/modules/home/cli-apps/home-manager/default.nix b/modules/home/cli-apps/home-manager/default.nix index cedb56a..450c53c 100644 --- a/modules/home/cli-apps/home-manager/default.nix +++ b/modules/home/cli-apps/home-manager/default.nix @@ -25,6 +25,7 @@ in }; home.packages = with pkgs; [ + bat vim cachix ]; diff --git a/modules/home/tools/alacritty/default.nix b/modules/home/tools/alacritty/default.nix deleted file mode 100644 index 809f86c..0000000 --- a/modules/home/tools/alacritty/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ lib -, config -, pkgs -, ... -}: -let - inherit (lib) mkEnableOption mkIf; - - cfg = config.plusultra.tools.alacritty; -in -{ - options.plusultra.tools.alacritty = { - enable = mkEnableOption "alacritty"; - }; - - config = mkIf cfg.enable { - home.packages = with pkgs; [ - alacritty - (pkgs.nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" "JetBrainsMono" ]; }) - ]; - }; -} diff --git a/modules/home/tools/ssh/default.nix b/modules/home/tools/ssh/default.nix index e8f545b..6d6cd55 100644 --- a/modules/home/tools/ssh/default.nix +++ b/modules/home/tools/ssh/default.nix @@ -10,11 +10,7 @@ in }; config = mkIf cfg.enable { - home.packages = with pkgs; [ - mosh - ]; programs.ssh = { - enable = true; extraConfig = '' Host * HostKeyAlgorithms +ssh-rsa