blob: 5fd0d7587ce67d6b45f4c2d7edc00abf2a0f3a76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
inputs,
config,
lib,
system,
...
}: let
inherit (lib) mkIf;
cfg = config.desktops.hyprland;
in {
imports = [
./binds.nix
./env.nix
./idle.nix
./plugins.nix
./settings.nix
./wallpaper.nix
];
config = mkIf cfg.enable {
home.packages = [
inputs.rose-pine-hyprcursor.packages.${system}.default
];
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${system}.hyprland;
xwayland.enable = true;
systemd.enable = true;
};
};
}
|