2024-12-29 21:49:16 +01:00
|
|
|
# System configurations for Hyprland. For home configs, see ./home/hyprland
|
2024-12-29 00:34:39 +01:00
|
|
|
{ pkgs, ... }:
|
2024-12-28 13:30:51 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./waybar.nix
|
2024-12-28 20:25:37 +01:00
|
|
|
./wallpaper.nix
|
2024-12-28 13:30:51 +01:00
|
|
|
];
|
2024-12-29 00:34:39 +01:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
swaynotificationcenter
|
2024-12-29 21:49:16 +01:00
|
|
|
xdg-desktop-portal-hyprland
|
|
|
|
hyprpolkitagent # Auth deamon providing modals for password auth
|
2024-12-29 00:34:39 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
programs.hyprland = {
|
|
|
|
enable = true;
|
|
|
|
xwayland.enable = true;
|
|
|
|
};
|
2024-12-30 23:19:40 +01:00
|
|
|
|
|
|
|
services.hypridle.enable = true;
|
2024-12-28 13:30:51 +01:00
|
|
|
}
|