now on alacritty

This commit is contained in:
William 2025-06-15 12:55:03 -03:00
parent 76b5c5e953
commit 6f604f375a
3 changed files with 13 additions and 2 deletions

View file

@ -105,7 +105,7 @@
protonup protonup
### System Utilities ### ### System Utilities ###
adwaita-icon-theme adwaita-icon-theme
foot alacritty
junction junction
kara kara
kde-rounded-corners kde-rounded-corners

View file

@ -51,7 +51,7 @@
name = "Noto Color Emoji"; name = "Noto Color Emoji";
}; };
sizes = { sizes = {
applications = 10; applications = 11;
desktop = config.stylix.fonts.sizes.applications; desktop = config.stylix.fonts.sizes.applications;
popups = config.stylix.fonts.sizes.applications; popups = config.stylix.fonts.sizes.applications;
terminal = 12; terminal = 12;

View file

@ -94,6 +94,17 @@
# Workstation specific configuration # Workstation specific configuration
(lib.mkIf hostType.isWorkstation { (lib.mkIf hostType.isWorkstation {
programs.alacritty = {
enable = true;
settings = {
window = {
padding = {
x = 8;
y = 8;
};
};
};
};
}) })
]; ];
} }