21 lines
407 B
Nix
Raw Normal View History

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