config/modules/rice/hyprland/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

2024-02-29 22:20:26 -05:00
{
pkgs,
lib,
inputs,
theme,
2024-02-29 22:20:26 -05:00
...
}: let
mkService = lib.recursiveUpdate {
Unit.PartOf = ["graphical-session.target"];
Unit.After = ["graphical-session.target"];
Install.WantedBy = ["graphical-session.target"];
};
in {
imports = [./config.nix ./binds.nix ./rules.nix];
2024-02-29 22:20:26 -05:00
wayland.windowManager.hyprland = {
enable = true;
# package = inputs.hyprland.packages.${pkgs.system}.default;
2024-02-29 22:20:26 -05:00
systemd = {
variables = ["--all"];
extraCommands = [
"systemctl --user stop graphical-session.target"
"systemctl --user start hyprland-session.target"
];
};
};
# fake a tray to let apps start
# https://github.com/nix-community/home-manager/issues/2064
systemd.user.targets.tray = {
Unit = {
Description = "Home Manager System Tray";
Requires = ["graphical-session-pre.target"];
};
};
systemd.user.services = {
swaybg = mkService {
Unit.Description = "Wallpaper chooser";
Service = {
ExecStart = "${lib.getExe pkgs.swaybg} -i ${theme.wallpaper}";
Restart = "always";
};
};
};
2024-02-29 22:20:26 -05:00
}