2025-02-06 13:56:58 -05:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
home.packages = [ pkgs.shikane ];
|
|
|
|
|
|
|
|
systemd.user.services.shikane = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Shikane";
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
Install = {
|
|
|
|
WantedBy = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
Service = {
|
|
|
|
Type = "simple";
|
2025-02-06 18:58:39 -05:00
|
|
|
ExecStart = "${pkgs.shikane}/bin/shikane";
|
2025-02-06 13:56:58 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
xdg.configFile."shikane".source = ../../homes/emenel/dotfiles/dot_config/shikane;
|
|
|
|
}
|