This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/home/hyprland/default.nix

22 lines
461 B
Nix
Raw Normal View History

{config, pkgs, ... }:
{
# install hyprland
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.unstable.hyprland;
xwayland.enable = true;
systemd.enable = true;
};
2024-03-24 20:51:24 +01:00
imports = [
2024-03-24 20:52:46 +01:00
./hyprland-bindings.nix
./hyprland-environment.nix
2024-03-24 20:51:24 +01:00
./hyprland-execution.nix
2024-03-24 20:52:46 +01:00
./hyprland-general.nix
./hyprland-graphics.nix
./hyprland-input.nix
./hyprland-window_rules.nix
./hyprlock.nix
2024-03-24 20:51:24 +01:00
];
}