add alacritty
All checks were successful
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

View File

@ -21,6 +21,7 @@
./ide
./ebook
./cad
./terminal
];
# Timzone and locales (same for all machines so I put it here)

View File

@ -43,6 +43,7 @@ in
freecad.enable = true;
fritzing.enable = true;
aegisub.enable = true;
alacritty.enable = true;
};
};
}

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 ];
};
}

View File

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./alacritty.nix
];
}