Compare commits

...

2 Commits

Author SHA1 Message Date
Zynh Ludwig 1e87bd7221 alacritty is now a proper module 2024-05-29 20:50:00 -07:00
Zynh Ludwig cd936d590c better comment 2024-05-29 20:46:02 -07:00
4 changed files with 36 additions and 22 deletions

View File

@ -5,7 +5,6 @@
./home/modules
./home/modules/git.nix
./home/modules/fish.nix
./home/modules/alacritty.nix
];
# Home Manager needs a bit of information about you and the paths it should
@ -17,6 +16,7 @@
enable = true;
package = inputs.neovim-overlay.packages.${pkgs.system}.default;
};
snowhawk.alacritty.enable = true;
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release

View File

@ -1,27 +1,35 @@
{ pkgs, ... }:
{ pkgs, lib, config, ... }:
let
cfg = config.snowhawk.alacritty;
in
{
programs.alacritty = {
enable = true;
settings = {
shell = "${pkgs.fish}/bin/fish";
window = {
opacity = 0.98;
};
font = {
normal = {
family = "JetBrainsMono Nerd Font";
style = "Regular";
options.snowhawk.alacritty = {
enable = lib.mkEnableOption "alacritty";
};
config = lib.mkIf cfg.enable {
programs.alacritty = {
enable = true;
settings = {
shell = "${pkgs.fish}/bin/fish";
window = {
opacity = 0.98;
};
bold = {
family = "JetBrainsMono Nerd Font";
style = "Bold";
};
italic = {
family = "JetBrainsMono Nerd Font";
style = "Italic";
font = {
normal = {
family = "JetBrainsMono Nerd Font";
style = "Regular";
};
bold = {
family = "JetBrainsMono Nerd Font";
style = "Bold";
};
italic = {
family = "JetBrainsMono Nerd Font";
style = "Italic";
};
};
};
};
};
}

View File

@ -1,4 +1,7 @@
{ ... }:
{
imports = [ ./neovim.nix ];
imports = [
./neovim.nix
./alacritty.nix
];
}

View File

@ -8,6 +8,9 @@ in
package = lib.mkPackageOption pkgs "neovim" {
default = [ "neovim-unwrapped" ];
};
# This should be close to identical to above
#
# package = lib.mkOption {
# type = lib.types.package;
# default = pkgs.neovim-unwrapped;