24 lines
416 B
Nix
24 lines
416 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.file = {
|
|
".config/hypr/hyprland.conf.d".source = ./hyprland.conf.d;
|
|
};
|
|
|
|
home.packages = [
|
|
pkgs.egl-wayland # For NVIDIA compatibility
|
|
];
|
|
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile ./hyprland.conf;
|
|
plugins = [inputs.hy3.packages.${pkgs.system}.hy3];
|
|
};
|
|
|
|
# bar is required
|
|
imports = [
|
|
../../bar
|
|
];
|
|
}
|