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.
67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# home.packages = with pkgs; [ iosevka-bin ];
|
|
fonts.fontconfig.enable = true;
|
|
|
|
programs.rio = {
|
|
enable = true;
|
|
settings = {
|
|
fonts = {
|
|
family = "Iosevka Nerd Font";
|
|
size = 20;
|
|
};
|
|
|
|
window = {
|
|
foreground-opacity = 1.0;
|
|
background-opacity = 0.9;
|
|
blur = true;
|
|
};
|
|
|
|
# disable-ctlseqs-alt = true;
|
|
option-as-alt = "left";
|
|
padding-x = 10;
|
|
|
|
adaptive-theme = {
|
|
dark = "catppuccin-mocha";
|
|
light = "catppuccin-latte";
|
|
};
|
|
|
|
navigation = {
|
|
# mode = "Plain";
|
|
mode = "Breadcrumb";
|
|
};
|
|
|
|
bindings = {
|
|
keys = [
|
|
{ key = "w"; "with" = "control"; bytes = [27 91 53 126]; }
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
window = {
|
|
decorations = "buttonless";
|
|
padding = {
|
|
x = 12;
|
|
y = 12;
|
|
};
|
|
opacity = 0.95;
|
|
};
|
|
font = {
|
|
normal.family = "Iosevka NF";
|
|
bold.family = "Iosevka NF";
|
|
italic.family = "Iosevka NF";
|
|
size = 16.0;
|
|
};
|
|
keyboard.bindings = [
|
|
# { key = "F"; mods = "Alt"; chars = "\\x1Bf"; }
|
|
# { key = "B"; mods = "Alt"; chars = "\\x1Bb"; }
|
|
];
|
|
};
|
|
};
|
|
}
|