26 lines
547 B
Nix
26 lines
547 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
inputs.hyprland.homeManagerModules.default
|
|
];
|
|
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"
|
|
];
|
|
};
|
|
};
|
|
}
|