2022-08-28 15:23:16 +03:00
|
|
|
{ lib, config, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.progs.alacritty;
|
|
|
|
|
|
|
|
alacrittyConfig = import ./config.nix;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.progs.alacritty = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Enable alacritty, GPU-accelerated terminal emulator";
|
|
|
|
};
|
|
|
|
};
|
2022-08-29 15:40:41 +03:00
|
|
|
|
2022-08-28 15:23:16 +03:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.alacritty = {
|
|
|
|
enable = true;
|
|
|
|
settings = alacrittyConfig;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|