2025-01-07 20:18:30 +01:00
|
|
|
# System configurations for Hyprland. For home configs, see ./home-manager/hyprland
|
2024-12-29 00:34:39 +01:00
|
|
|
{ pkgs, ... }:
|
2024-12-28 13:30:51 +01:00
|
|
|
|
|
|
|
{
|
2024-12-29 00:34:39 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
2024-12-29 21:49:16 +01:00
|
|
|
xdg-desktop-portal-hyprland
|
|
|
|
hyprpolkitagent # Auth deamon providing modals for password auth
|
2025-01-02 21:17:58 +01:00
|
|
|
hyprshot # Screenshots
|
2024-12-29 00:34:39 +01:00
|
|
|
];
|
|
|
|
|
2024-12-31 00:38:23 +01:00
|
|
|
programs = {
|
|
|
|
hyprland = {
|
|
|
|
enable = true;
|
|
|
|
xwayland.enable = true;
|
2025-01-11 23:24:55 +01:00
|
|
|
withUWSM = true;
|
2024-12-31 00:38:23 +01:00
|
|
|
};
|
|
|
|
hyprlock.enable = true; # Lock screen
|
2024-12-29 00:34:39 +01:00
|
|
|
};
|
2024-12-30 23:19:40 +01:00
|
|
|
|
2024-12-31 00:38:23 +01:00
|
|
|
services.hypridle.enable = true; # Lock when unused
|
2024-12-28 13:30:51 +01:00
|
|
|
}
|