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

29 lines
600 B
Nix

{
wayland.windowManager.hyprland = {
enable = true;
settings = {
source = [
"./land/appearance.conf"
"./land/inputs.conf"
"./land/keybinds.conf"
"./land/rules.conf"
"./land/startup.conf"
];
};
systemd = {
variables = ["--all"];
extraCommands = [
"systemctl --user stop graphical-session.target"
"systemctl --user start hyprland-session.target"
];
};
};
home.sessionVariables = {
QT_QPA_PLATFORM = "wayland";
SDL_VIDEODRIVER = "wayland";
XDG_SESSION_TYPE = "wayland";
};
}