pointfichiers/de/hypr/default.nix
2024-09-18 15:00:31 +02:00

20 lines
337 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 ];
};
# bar is required
imports = [
../../bar
];
}