mirror of
https://git.sr.ht/~azikx/karbur
synced 2024-10-30 13:06:19 +00:00
12 lines
317 B
Nix
12 lines
317 B
Nix
{ pkgs, inputs, ... }:
|
|
let hpkg = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system};
|
|
in {
|
|
imports = [ ./binds.nix ./rules.nix ./settings.nix ./plugins.nix ];
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
package = hpkg.hyprland;
|
|
xwayland.enable = true;
|
|
systemd.enable = true;
|
|
};
|
|
}
|