forked from Shinonome/dots-hyprland
30 lines
463 B
Nix
30 lines
463 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hypr/keybinds.nix
|
|
./hypr/execs.nix
|
|
./hypr/rules.nix
|
|
./hypr/env.nix
|
|
./hypr/colours.nix
|
|
];
|
|
|
|
home.file = {
|
|
".config/hypr/scripts" = {
|
|
source = builtins.path {
|
|
path = ../../.config/hypr/hyprland/scripts;
|
|
executable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
systemd.enable = true;
|
|
};
|
|
}
|