Compare commits
No commits in common. "8e20509b926ef72bdebf9aa5fd421f5bf83a6480" and "f8361de04ab4f45a101210cf2297baa4f63fdb82" have entirely different histories.
8e20509b92
...
f8361de04a
|
@ -27,8 +27,6 @@
|
||||||
};
|
};
|
||||||
tools = {
|
tools = {
|
||||||
direnv.enable = true;
|
direnv.enable = true;
|
||||||
alacritty.enable = true;
|
|
||||||
ssh.enable = true;
|
|
||||||
# jetbrains.enable = true;
|
# jetbrains.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -27,7 +27,6 @@
|
||||||
};
|
};
|
||||||
tools = {
|
tools = {
|
||||||
direnv.enable = true;
|
direnv.enable = true;
|
||||||
ssh.enable = true;
|
|
||||||
# jetbrains.enable = true;
|
# jetbrains.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -25,6 +25,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
bat
|
||||||
vim
|
vim
|
||||||
cachix
|
cachix
|
||||||
];
|
];
|
||||||
|
|
|
@ -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" ]; })
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -10,11 +10,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [
|
|
||||||
mosh
|
|
||||||
];
|
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
Host *
|
Host *
|
||||||
HostKeyAlgorithms +ssh-rsa
|
HostKeyAlgorithms +ssh-rsa
|
||||||
|
|
Loading…
Reference in a new issue