36 lines
729 B
Nix
36 lines
729 B
Nix
|
{ config, lib, ... }:
|
||
|
let
|
||
|
cfg = config.programs.vscode;
|
||
|
in
|
||
|
{
|
||
|
# TODO: add `dirname` to $PATH upstream
|
||
|
systemd.user.services.update-vscode-extensions = {
|
||
|
Unit = {
|
||
|
Description = "Update vscode extensions";
|
||
|
};
|
||
|
|
||
|
Service = {
|
||
|
Type = "oneshot";
|
||
|
CPUSchedulingPolicy = "idle";
|
||
|
IOSchedulingClass = "idle";
|
||
|
ExecStart = "${lib.getExe cfg.package} --update-extensions";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
systemd.user.timers.update-vscode-extensions = {
|
||
|
Unit = {
|
||
|
Description = "Update vscode extensions";
|
||
|
};
|
||
|
|
||
|
Timer = {
|
||
|
Unit = "update-vscode-extensions.service";
|
||
|
OnCalendar = "daily";
|
||
|
Persistent = true;
|
||
|
};
|
||
|
|
||
|
Install = {
|
||
|
WantedBy = [ "timers.target" ];
|
||
|
};
|
||
|
};
|
||
|
}
|