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