Harald Hoyer
cbe03d1060
Renamed several modules to better align with Darwin-specific configurations. Refactored configuration for Alacritty and removed it from system packages where not needed. Introduced Homebrew settings and cleaned up redundant entries in multiple Nix files.
19 lines
297 B
Nix
19 lines
297 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkEnableOption mkIf;
|
|
|
|
cfg = config.metacfg.tools.alacritty;
|
|
in
|
|
{
|
|
options.metacfg.tools.alacritty = {
|
|
enable = mkEnableOption "alacritty";
|
|
};
|
|
|
|
config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ alacritty ]; };
|
|
}
|