25 lines
332 B
Nix
25 lines
332 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs = {
|
|
hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
systemd.setPath.enable = true;
|
|
};
|
|
|
|
hyprlock.enable = true;
|
|
};
|
|
|
|
services.hypridle.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
hyprshot
|
|
hyprpolkitagent
|
|
mako
|
|
waybar
|
|
wofi
|
|
];
|
|
}
|