nix-conf/hosts/hyuganatsu/users/ahnwuoa/default.nix

25 lines
500 B
Nix
Raw Normal View History

2024-11-29 01:48:44 -05:00
{
config,
pkgs,
lib,
...
}: {
2024-10-27 02:36:51 -04:00
imports = [
../../../../user
];
home.username = "ahnwuoa";
2024-11-29 01:48:44 -05:00
services.activitywatch = {
enable = true;
watchers = {
aw-watcher-afk.package = pkgs.activitywatch;
aw-watcher-window.package = pkgs.activitywatch;
};
};
systemd.user.targets.activitywatch = {
Unit.Requires = lib.mkForce ["autostart.target"];
Unit.After = lib.mkForce ["autostart.target"];
Install.WantedBy = lib.mkForce ["autostart.target"];
};
2024-10-27 02:36:51 -04:00
}