Files
cnix/home/core/gui/hypr/cnst.nix
cnst a67a342617 hm
2024-07-31 16:15:08 +02:00

20 lines
391 B
Nix

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