config/modules/home-manager/zack.nix

20 lines
339 B
Nix
Raw Normal View History

{
inputs,
pkgs,
...
}: {
imports = [./default.nix ./applications.nix];
systemd.user.services.kb-gui = {
Unit = {
Description = "KB Time/Date thing";
};
Install = {
WantedBy = ["default.target"];
};
Service = {
ExecStart = "${inputs.kb-gui.packages.${pkgs.system}.kb}/bin/kb";
};
};
}