This commit is contained in:
muon 2024-06-03 13:09:49 +00:00
parent e81d8c9be4
commit e2e390efdf
11 changed files with 96 additions and 100 deletions

View file

@ -0,0 +1,9 @@
{ pkgs, lib, config, ... }: {
options = {
mods.terminal.emulator.enable = lib.mkEnableOption "enables terminal emulator";
};
config = lib.mkIf config.mods.terminal.emulator.enable {
programs.alacritty.enable = true;
};
}