fixed dpi settings for kitty.
This commit is contained in:
parent
1a15ee006f
commit
62f6e13680
4 changed files with 8 additions and 2 deletions
|
|
@ -16,7 +16,7 @@
|
||||||
font.name = "Fira Code";
|
font.name = "Fira Code";
|
||||||
themeFile = "gruvbox-dark";
|
themeFile = "gruvbox-dark";
|
||||||
settings = {
|
settings = {
|
||||||
background_opacity = "0.8";
|
# background_opacity = "0.8";
|
||||||
enable_audio_bell = "no";
|
enable_audio_bell = "no";
|
||||||
visual_bell_duration = "0.5";
|
visual_bell_duration = "0.5";
|
||||||
window_alert_on_bell = "yes";
|
window_alert_on_bell = "yes";
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,9 @@
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
windowManager.i3.enable = true;
|
windowManager.i3.enable = true;
|
||||||
|
excludePackages = with pkgs; [
|
||||||
|
xterm
|
||||||
|
];
|
||||||
};
|
};
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
home-manager.users.${config.host.details.user} = {config, ...}: {
|
home-manager.users.${config.host.details.user} = {config, ...}: {
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
settings.PasswordAuthentication = false;
|
settings.PasswordAuthentication = false;
|
||||||
};
|
};
|
||||||
# so we dont have to set TERM everytime we ssh in.
|
# so we dont have to set TERM everytime we ssh in.
|
||||||
environment.systemPackages = [ pkgs.kitty.terminfo ];
|
environment.systemPackages = [pkgs.kitty.terminfo];
|
||||||
|
|
||||||
users.users.root.openssh.authorizedKeys.keys = lib.mkDefault (
|
users.users.root.openssh.authorizedKeys.keys = lib.mkDefault (
|
||||||
if inputs ? nix-secrets
|
if inputs ? nix-secrets
|
||||||
|
|
|
||||||
|
|
@ -86,6 +86,9 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xresources.extraConfig = "Xft.dpi: 210";
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
signal-desktop
|
signal-desktop
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue