Add alacritty configuration and use it as default
This commit is contained in:
parent
b2846cc484
commit
6f6b32612d
7 changed files with 71 additions and 3 deletions
|
|
@ -37,6 +37,7 @@
|
||||||
atuin.enable = true;
|
atuin.enable = true;
|
||||||
chromium.enable = true;
|
chromium.enable = true;
|
||||||
thunderbird.enable = true;
|
thunderbird.enable = true;
|
||||||
|
alacritty.enable = true;
|
||||||
# espanso.enable = true;
|
# espanso.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@
|
||||||
chromium.enable = true;
|
chromium.enable = true;
|
||||||
espanso.enable = true;
|
espanso.enable = true;
|
||||||
ion.enable = true;
|
ion.enable = true;
|
||||||
|
alacritty.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
polkit-kde-agent = getExe' pkgs.kdePackages.polkit-kde-agent-1 "polkit-kde-agent";
|
polkit-kde-agent = getExe' pkgs.kdePackages.polkit-kde-agent-1 "polkit-kde-agent";
|
||||||
wpctl = getExe' pkgs.wireplumber "wpctl";
|
wpctl = getExe' pkgs.wireplumber "wpctl";
|
||||||
swaybg = getExe pkgs.swaybg;
|
swaybg = getExe pkgs.swaybg;
|
||||||
ghostty = getExe config.programs.ghostty.package;
|
alacritty = getExe config.programs.alacritty.package;
|
||||||
wl-paste = getExe' pkgs.wl-clipboard "wl-paste";
|
wl-paste = getExe' pkgs.wl-clipboard "wl-paste";
|
||||||
cliphist = getExe' pkgs.cliphist "cliphist";
|
cliphist = getExe' pkgs.cliphist "cliphist";
|
||||||
cliphist-fuzzel-img = getExe' pkgs.cliphist "cliphist-fuzzel-img";
|
cliphist-fuzzel-img = getExe' pkgs.cliphist "cliphist-fuzzel-img";
|
||||||
|
|
@ -57,7 +57,7 @@ in
|
||||||
])
|
])
|
||||||
(plain "Mod+T" [
|
(plain "Mod+T" [
|
||||||
(spawn [
|
(spawn [
|
||||||
ghostty
|
alacritty
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
(plain "Mod+Shift+T" [
|
(plain "Mod+Shift+T" [
|
||||||
|
|
@ -471,6 +471,10 @@ in
|
||||||
app-id = "^com\\.mitchellh\\.ghostty$";
|
app-id = "^com\\.mitchellh\\.ghostty$";
|
||||||
is-active = true;
|
is-active = true;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
app-id = "^Alacritty$";
|
||||||
|
is-active = true;
|
||||||
|
}
|
||||||
])
|
])
|
||||||
(leaf "draw-border-with-background" [false])
|
(leaf "draw-border-with-background" [false])
|
||||||
])
|
])
|
||||||
|
|
@ -480,6 +484,10 @@ in
|
||||||
app-id = "^com\\.mitchellh\\.ghostty$";
|
app-id = "^com\\.mitchellh\\.ghostty$";
|
||||||
is-active = false;
|
is-active = false;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
app-id = "^Alacritty$";
|
||||||
|
is-active = false;
|
||||||
|
}
|
||||||
])
|
])
|
||||||
(leaf "opacity" [0.8])
|
(leaf "opacity" [0.8])
|
||||||
(leaf "draw-border-with-background" [false])
|
(leaf "draw-border-with-background" [false])
|
||||||
|
|
|
||||||
27
home/modules/programs/alacritty/alacritty.toml
Normal file
27
home/modules/programs/alacritty/alacritty.toml
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
[general]
|
||||||
|
ipc_socket = true
|
||||||
|
live_config_reload = true
|
||||||
|
|
||||||
|
[window]
|
||||||
|
dynamic_padding = true
|
||||||
|
opacity = 0.8
|
||||||
|
blur = true
|
||||||
|
|
||||||
|
[scrolling]
|
||||||
|
history = 100000
|
||||||
|
multiplier = 5
|
||||||
|
|
||||||
|
[font]
|
||||||
|
size = 16
|
||||||
|
|
||||||
|
[bell]
|
||||||
|
duration = 1
|
||||||
|
|
||||||
|
[selection]
|
||||||
|
save_to_clipboard = true
|
||||||
|
|
||||||
|
[terminal]
|
||||||
|
osc52 = "CopyPaste"
|
||||||
|
|
||||||
|
[mouse]
|
||||||
|
hide_when_typing = true
|
||||||
30
home/modules/programs/alacritty/default.nix
Normal file
30
home/modules/programs/alacritty/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
cfg = config.youthlic.programs.alacritty;
|
||||||
|
in {
|
||||||
|
options = {
|
||||||
|
youthlic.programs.alacritty = {
|
||||||
|
enable = lib.mkEnableOption "alacritty";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
programs.alacritty = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.alacritty_git;
|
||||||
|
settings =
|
||||||
|
(./alacritty.toml |> builtins.readFile |> builtins.fromTOML)
|
||||||
|
// {
|
||||||
|
colors = lib.mkForce {};
|
||||||
|
font.size = lib.mkForce 16;
|
||||||
|
window.opacity = lib.mkForce 0.8;
|
||||||
|
general.import = [
|
||||||
|
"${pkgs.alacritty-theme}/share/alacritty-theme/gruvbox_dark.toml"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -30,5 +30,6 @@
|
||||||
./fzf.nix
|
./fzf.nix
|
||||||
./eza.nix
|
./eza.nix
|
||||||
./ion.nix
|
./ion.nix
|
||||||
|
./alacritty
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ in {
|
||||||
terminal-exec = {
|
terminal-exec = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
default = ["com.mitchellh.ghostty.desktop"];
|
default = ["Alacritty.desktop"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
mime = {
|
mime = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue