mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 16:39:42 -04:00
18 lines
363 B
Nix
18 lines
363 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.modules.alacritty;
|
|
|
|
in
|
|
{ options.modules.alacritty = { enable = mkEnableOption "alacritty"; };
|
|
config = mkIf cfg.enable {
|
|
programs.alacritty = import ./config/alacritty.nix { inherit pkgs lib; };
|
|
|
|
home.packages = with pkgs; [
|
|
terminus-nerdfont
|
|
ranger
|
|
highlight
|
|
];
|
|
};
|
|
}
|