Files
cnix/home/core/gui/hypr/cnst.nix
2024-07-31 09:06:39 +02:00

18 lines
370 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"
# ];
};
};
}