23 lines
373 B
Nix
Raw Normal View History

# Home configurations for Hyprland. For system configs, see ./hyprland
{ ... }:
{
imports = [
./hyprcursor
./waybar
./hypridle
./hyprlock
2025-01-04 21:55:56 +01:00
./swaync
];
home.file.".config/hypr/hyprland.conf".source = ./hyprland.conf;
programs = {
btop.enable = true;
kitty = {
settings = {
window_padding_width = 10;
};
};
};
}