snowflake/home/wayland/hyprland/default.nix

15 lines
301 B
Nix
Raw Normal View History

2024-04-22 16:16:03 -04:00
{inputs, ...}: {
2023-07-21 09:04:06 -04:00
imports = [
2024-04-22 16:16:03 -04:00
inputs.hyprland.homeManagerModules.default
./config/general.nix
./config/binds.nix
./config/rules.nix
2024-04-22 16:16:03 -04:00
# ./config/plugins.nix
2023-07-21 09:04:06 -04:00
];
2023-02-05 09:06:16 -05:00
wayland.windowManager.hyprland = {
enable = true;
2023-12-30 20:55:01 -05:00
systemd.enable = true;
2023-07-21 09:04:06 -04:00
xwayland.enable = true;
2023-02-05 09:06:16 -05:00
};
2023-04-23 17:45:37 -04:00
}