mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
30 lines
960 B
Nix
Executable file
30 lines
960 B
Nix
Executable file
{
|
|
pkgs,
|
|
flake,
|
|
...
|
|
}: let
|
|
configPath = ./config;
|
|
configImports = {
|
|
animations = import (configPath + /animations.nix);
|
|
bind = import (configPath + /bind.nix);
|
|
bindm = import (configPath + /bindm.nix);
|
|
binds = import (configPath + /binds.nix);
|
|
bindl = import (configPath + /bindl.nix);
|
|
decoration = import (configPath + /decoration.nix);
|
|
dwindle = import (configPath + /dwindle.nix);
|
|
exec-once = import (configPath + /exec-once.nix);
|
|
general = import (configPath + /general.nix);
|
|
input = import (configPath + /input.nix);
|
|
misc = import (configPath + /misc.nix);
|
|
windowrule = import (configPath + /windowrule.nix);
|
|
windowrulev2 = import (configPath + /windowrulev2.nix);
|
|
};
|
|
in {
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
package = flake.inputs.hyprland.packages.${pkgs.system}.hyprland;
|
|
xwayland.enable = true;
|
|
systemd.enable = false;
|
|
settings = configImports;
|
|
};
|
|
}
|