This commit is contained in:
cnst
2024-07-16 10:06:56 +02:00
parent 0d3517bd06
commit 0751537bcb
7 changed files with 155 additions and 30 deletions

View File

@@ -0,0 +1,28 @@
{
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";
};
}