Martin Berg Alstad 51b30405c5
🧰 Styled Hyprlock
- Commented out listener in Hypridle that caused a bug?
- Activated btop
2024-12-31 17:24:33 +01:00

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;
};
};
};
}