Files
illogical-impulse/modules/desktop/hyprland/default.nix
T
2025-08-19 17:03:16 -05:00

18 lines
260 B
Nix

{pkgs, ...}: {
imports = [
./keybinds.nix
./execs.nix
./rules.nix
./env.nix
./colours.nix
];
wayland.windowManager.hyprland = {
enable = true;
xwayland.enable = true;
systemd.enable = true;
settings = {
};
};
}