refactor: move max into dentritic pattern
This commit is contained in:
21
modules/common/features/development/alacritty.nix
Normal file
21
modules/common/features/development/alacritty.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ ... }: {
|
||||
flake.homeModules.commonFeatureAlacritty = { ... }: {
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
theme = "tokyo_night";
|
||||
settings = {
|
||||
window = {
|
||||
padding = { x = 14; y = 14; };
|
||||
};
|
||||
font = {
|
||||
normal.family = "JetBrainsMono Nerd Font";
|
||||
size = 10;
|
||||
};
|
||||
keyboard.bindings = [
|
||||
{ key = "Insert"; mods = "Shift"; action = "Paste"; }
|
||||
{ key = "Insert"; mods = "Control"; action = "Copy"; }
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user