refine hyprland configuration

This commit is contained in:
insects 2024-08-10 14:15:25 +02:00
parent 548c1be854
commit 5e82b5487f
3 changed files with 88 additions and 3 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, ... }: {
imports = [
./kitty.nix
];
home.packages = with pkgs; [
# programs
firefox # you need a web browser
];
fonts.fontconfig.enable = true;
}

View file

@ -0,0 +1,14 @@
{ config, inputs, pkgs, ... }: {
programs.kitty = {
enable = true;
font = {
name = "JetBrains Mono Nerd Font";
package = pkgs.nerdfonts.override { fonts = ["JetBrainsMono"]; };
size = 11;
};
settings = {
editor = config.home.sessionVariables.EDITOR;
window_padding_width = 10;
};
};
}