pointfichiers/de/hypr/default.nix

21 lines
337 B
Nix
Raw Normal View History

2024-09-16 14:59:29 +02:00
{
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 ];
};
2024-09-18 14:55:52 +02:00
# bar is required
2024-09-18 15:00:31 +02:00
imports = [
2024-09-18 14:55:52 +02:00
../../bar
2024-09-18 15:00:31 +02:00
];
2024-09-16 14:59:29 +02:00
}