mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
9 lines
238 B
Nix
9 lines
238 B
Nix
{ 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;
|
|
};
|
|
}
|