Martin Berg Alstad 793b3a16d0
💤 Hypridle
- Added hypridle with a simple config
2024-12-30 23:19:40 +01:00

23 lines
443 B
Nix

# System configurations for Hyprland. For home configs, see ./home/hyprland
{ pkgs, ... }:
{
imports = [
./waybar.nix
./wallpaper.nix
];
environment.systemPackages = with pkgs; [
swaynotificationcenter
xdg-desktop-portal-hyprland
hyprpolkitagent # Auth deamon providing modals for password auth
];
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
services.hypridle.enable = true;
}