1
1
Fork 0
mirror of https://git.sr.ht/~rouven/nixos-config synced 2025-06-07 18:18:45 +02:00
nixos-config/users/rouven/modules/wayland/shikane.nix

19 lines
443 B
Nix

{ pkgs, ... }:
{
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" ];
};
Service = { ExecStart = "${pkgs.shikane}/bin/shikane"; };
Install = { WantedBy = [ "graphical-session.target" ]; };
};
}