15 lines
283 B
Nix
15 lines
283 B
Nix
{
|
|
hy3,
|
|
pkgs,
|
|
...
|
|
} : {
|
|
home.file = {
|
|
".config/hypr/hyprland.conf.d".source = ./hyprland.conf.d;
|
|
};
|
|
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile ./hyprland.conf;
|
|
plugins = [ hy3.packages.${pkgs.system}.hy3 ];
|
|
};
|
|
}
|