mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
20 lines
443 B
Nix
20 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" ]; };
|
|
};
|
|
}
|