remove alacritty
This commit is contained in:
parent
5dd7bc0291
commit
c7819512f9
|
@ -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"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,8 +1,5 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
universe = {
|
universe = {
|
||||||
programs = {
|
|
||||||
alacritty.enable = true;
|
|
||||||
};
|
|
||||||
de = {
|
de = {
|
||||||
hyprland.enable = true;
|
hyprland.enable = true;
|
||||||
waybar.enable = true;
|
waybar.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue