mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
16 lines
374 B
Nix
16 lines
374 B
Nix
{pkgs, ...}: {
|
|
systemd.user.services.kanon = {
|
|
description = "Kanon";
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.katwine}/bin/katwine kanon";
|
|
Type = "forking";
|
|
};
|
|
};
|
|
systemd.user.services.hanahira = {
|
|
description = "Hanahira";
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.katwine}/bin/katwine hanahira";
|
|
Type = "forking";
|
|
};
|
|
};
|
|
}
|