24 lines
380 B
Nix
24 lines
380 B
Nix
# Home configurations for Hyprland. For system configs, see ./hyprland
|
|
{
|
|
imports = [
|
|
./binds.nix
|
|
./hyprcursor
|
|
./waybar
|
|
./hypridle
|
|
./hyprlock
|
|
./settings.nix
|
|
./swaync
|
|
];
|
|
|
|
programs = {
|
|
btop.enable = true;
|
|
kitty = {
|
|
settings = {
|
|
window_padding_width = 10;
|
|
};
|
|
};
|
|
};
|
|
|
|
wayland.windowManager.hyprland.enable = true;
|
|
}
|