nixos-config/modules/nixos/hyprland.nix
2025-01-16 21:50:20 +01:00

19 lines
223 B
Nix

{
config,
lib,
pkgs,
...
}:
{
programs.hyprland = {
enable = true;
};
environment.systemPackages = [
# ... other packages
pkgs.hyprlandPlugins.hyprspace
pkgs.hyprlandPlugins.hyprgrass
];
}