pointfichiers/de/hypr/default.nix
2024-09-19 12:57:44 +02:00

24 lines
411 B
Nix

{
hy3,
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 = [ hy3.packages.${pkgs.system}.hy3 ];
};
# bar is required
imports = [
../../bar
];
}