Files
illogical-impulse/modules/desktop/hyprland/default.nix
T
2025-08-19 18:35:27 -05:00

40 lines
678 B
Nix

{
pkgs,
config,
lib,
...
}: let
cfg = config.programs.illogical-impulse;
in {
wayland.windowManager.hyprland = {
enable = true;
xwayland.enable = true;
systemd.enable = true;
};
imports = [
./hypr/keybinds.nix
./hypr/execs.nix
./hypr/rules.nix
./hypr/env.nix
./hypr/colours.nix
./hyprlock.nix
./hypridle.nix
];
home.file = {
".config/hypr/scripts" = {
source = builtins.path {
path = ../../.config/hypr/hyprland/scripts;
executable = true;
};
};
};
# wayland.windowManager.hyprland = {
# enable = true;
# xwayland.enable = true;
# systemd.enable = true;
# };
}