nix/modules/nixos/hyprland.nix

18 lines
307 B
Nix
Raw Normal View History

2024-03-27 10:38:30 -05:00
{
inputs,
pkgs,
...
}: {
2024-02-16 14:57:52 -06:00
imports = [
./ewwbar.nix
./pipewire.nix
2024-03-27 10:38:30 -05:00
{
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
environment.systemPackages = with pkgs; [hyprpaper xwaylandvideobridge];
}
2024-02-16 14:57:52 -06:00
];
2023-10-03 16:26:45 -05:00
}