- Changed font on waybar to JetBrains Mono, and fontsize to a slighly smaller one - Removed and refactored style files slightly - Replaced icon for music in waybar - Padding for kitty
19 lines
315 B
Nix
19 lines
315 B
Nix
# Home configurations for Hyprland. For system configs, see ./hyprland
|
|
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hyprcursor
|
|
./waybar
|
|
./hypridle
|
|
./hyprlock
|
|
];
|
|
|
|
home.file.".config/hypr/hyprland.conf".source = ./hyprland.conf;
|
|
programs.kitty = {
|
|
settings = {
|
|
window_padding_width = 10;
|
|
};
|
|
};
|
|
}
|