Files
cnix/home/bin/hyprland/toothpick/default.nix
2024-08-03 14:59:44 +02:00

18 lines
356 B
Nix

{inputs, ...}: {
imports = [
inputs.hyprland.homeManagerModules.default
./cfg
];
wayland.windowManager.hyprland = {
enable = true;
systemd = {
variables = ["--all"];
extraCommands = [
"systemctl --user stop graphical-session.target"
"systemctl --user start hyprland-session.target"
];
};
};
}