add alacritty
nix flake show / show-flake (push) Successful in 31s

This commit is contained in:
smayzy
2025-07-24 17:18:58 +02:00
parent c5ef752a66
commit 1585912162
4 changed files with 23 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.alacritty.enable = mkOption {
type = types.bool;
default = false;
description = "alacritty";
};
config = mkIf config.smayzy.alacritty.enable {
environment.systemPackages = with pkgs; [ alacritty ];
};
}