Files
cnix/home/core/gui/hypr/land/default.nix
2024-07-16 10:06:56 +02:00

20 lines
397 B
Nix

{inputs, ...}: {
imports = [
inputs.hyprland.homeManagerModules.default
./binds.nix
./rules.nix
./settings.nix
];
wayland.windowManager.hyprland = {
enable = true;
systemd = {
variables = ["--all"];
extraCommands = [
"systemctl --user stop graphical-session.target"
"systemctl --user start hyprland-session.target"
];
};
};
}