Files
cnix/home/core/gui/hypr/land/default.nix
2024-07-18 00:03:01 +02:00

21 lines
476 B
Nix

{
wayland.windowManager.hyprland = {
enable = true;
systemd = {
variables = ["--all"];
extraCommands = [
"systemctl --user stop graphical-session.target"
"systemctl --user start hyprland-session.target"
];
extraConfig = ''
åsource=./land/appearance.conf
source=./land/inputs.conf
source=./land/keybinds.conf
source=./land/rules.conf
source=./land/startup.conf
'';
};
};
}