You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
727 B
Nix
35 lines
727 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# home.packages = with pkgs; [ iosevka-bin ];
|
|
fonts.fontconfig.enable = true;
|
|
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
window = {
|
|
decorations = "buttonless";
|
|
padding = {
|
|
x = 12;
|
|
y = 12;
|
|
};
|
|
dimentions = {
|
|
columns = 0;
|
|
lines = 0;
|
|
};
|
|
opacity = 0.95;
|
|
};
|
|
font = {
|
|
normal.family = "Iosevka Nerd Font";
|
|
bold.family = "Iosevka Nerd Font";
|
|
italic.family = "Iosevka Nerd Font";
|
|
size = 16.0;
|
|
};
|
|
key_bindings = [
|
|
{ key = "F"; mods = "Alt"; chars = "\\x1Bf"; }
|
|
{ key = "B"; mods = "Alt"; chars = "\\x1Bb"; }
|
|
];
|
|
};
|
|
};
|
|
}
|