Files
cnix/home/core/gui/hypr/cnst.nix
2024-07-31 10:36:24 +02:00

18 lines
362 B
Nix

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