remove alacritty

This commit is contained in:
tx0 2025-03-03 00:02:51 +05:00
parent 5dd7bc0291
commit c7819512f9
2 changed files with 0 additions and 39 deletions

View file

@ -1,36 +0,0 @@
{
lib,
config,
...
}: let
cfg = config.universe.programs.alacritty;
in {
options.universe.programs.alacritty = {
enable = lib.mkEnableOption "alacritty terminal";
};
config = lib.mkIf cfg.enable {
programs.alacritty = {
enable = true;
settings = {
general = {live_config_reload = true;};
font.glyph_offset = {
x = 0;
y = 0;
};
window = {
padding = {
x = 10;
y = 10;
};
dynamic_padding = true;
};
terminal.shell = {
program = "tmux";
args = ["new"];
};
};
};
};
}

View file

@ -1,8 +1,5 @@
{pkgs, ...}: {
universe = {
programs = {
alacritty.enable = true;
};
de = {
hyprland.enable = true;
waybar.enable = true;