- Commented out listener in Hypridle that caused a bug? - Activated btop
22 lines
360 B
Nix
22 lines
360 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 = {
|
|
btop.enable = true;
|
|
kitty = {
|
|
settings = {
|
|
window_padding_width = 10;
|
|
};
|
|
};
|
|
};
|
|
}
|