add alacritty configuration
This commit is contained in:
parent
2b66d88177
commit
c84ee3de66
2 changed files with 18 additions and 0 deletions
17
home/alacritty.nix
Normal file
17
home/alacritty.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
programs.alacritty = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
font.size = 12;
|
||||||
|
terminal.shell = {
|
||||||
|
args = ["new-session" "-A" "-s" "general"];
|
||||||
|
program = pkgs.tmux;
|
||||||
|
};
|
||||||
|
window = {
|
||||||
|
decorations = "None";
|
||||||
|
opacity = 1;
|
||||||
|
startup_mode = "Maximized";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
{config, ...}: {
|
{config, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
|
./alacritty.nix
|
||||||
./tmux
|
./tmux
|
||||||
./git.nix
|
./git.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue