Martin Berg Alstad a2f141a290
🔐 Enter hyprland.conf
Moved hyprland config into NixOS configuration.

Moved hyprcursor under hyprland config.
2024-12-29 21:49:16 +01:00

21 lines
407 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;
};
}