nixos-config/users/rouven/modules/wayland/shikane.nix

20 lines
443 B
Nix
Raw Normal View History

2024-06-22 16:28:09 +02:00
{ pkgs, ... }:
2023-06-15 21:01:17 +02:00
{
2024-06-22 16:28:09 +02:00
home.packages = [
pkgs.shikane
];
systemd.user.services.shikane = {
Unit = {
Description = "Dynamic output configuration tool";
Documentation = "man:shikane(1)";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
2023-06-15 21:01:17 +02:00
};
2024-06-22 16:28:09 +02:00
Service = { ExecStart = "${pkgs.shikane}/bin/shikane"; };
Install = { WantedBy = [ "graphical-session.target" ]; };
2023-06-15 21:01:17 +02:00
};
}