fixed dpi settings for kitty.

This commit is contained in:
Gabe Venberg 2026-02-13 20:57:52 +01:00
parent 1a15ee006f
commit 62f6e13680
4 changed files with 8 additions and 2 deletions

View file

@ -16,7 +16,7 @@
font.name = "Fira Code";
themeFile = "gruvbox-dark";
settings = {
background_opacity = "0.8";
# background_opacity = "0.8";
enable_audio_bell = "no";
visual_bell_duration = "0.5";
window_alert_on_bell = "yes";

View file

@ -8,6 +8,9 @@
services.xserver = {
enable = true;
windowManager.i3.enable = true;
excludePackages = with pkgs; [
xterm
];
};
programs.dconf.enable = true;
home-manager.users.${config.host.details.user} = {config, ...}: {

View file

@ -86,6 +86,9 @@ inputs.nixpkgs.lib.nixosSystem {
};
};
};
xresources.extraConfig = "Xft.dpi: 210";
home.packages = with pkgs; [
signal-desktop
];