483 current 2024-04-27 21:12:21 24.05.20240427.9d3911e 6.8.6-zen1 *

This commit is contained in:
zackartz 2024-04-27 21:12:31 -04:00
parent ca0d423615
commit 2e9f75908c
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
5 changed files with 77 additions and 69 deletions

View file

@ -0,0 +1,19 @@
{
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";
};
};
}