Compare commits

..

No commits in common. "8e20509b926ef72bdebf9aa5fd421f5bf83a6480" and "f8361de04ab4f45a101210cf2297baa4f63fdb82" have entirely different histories.

5 changed files with 1 additions and 29 deletions

View file

@ -27,8 +27,6 @@
};
tools = {
direnv.enable = true;
alacritty.enable = true;
ssh.enable = true;
# jetbrains.enable = true;
};
};

View file

@ -27,7 +27,6 @@
};
tools = {
direnv.enable = true;
ssh.enable = true;
# jetbrains.enable = true;
};
};

View file

@ -25,6 +25,7 @@ in
};
home.packages = with pkgs; [
bat
vim
cachix
];

View file

@ -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" ]; })
];
};
}

View file

@ -10,11 +10,7 @@ in
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
mosh
];
programs.ssh = {
enable = true;
extraConfig = ''
Host *
HostKeyAlgorithms +ssh-rsa