{ pkgs, config, lib, ... }: { | |
systemd.user.services."clicks.codes" = { | |
Unit.Description = "Run clicks.codes"; | |
Install.WantedBy = [ "default.target" ]; | |
Service.ExecStart = "${pkgs.nix}/bin/nix develop --command pnpm start"; | |
Service.WorkingDirectory = "${config.home.homeDirectory}/clicks.codes"; | |
Service.Environment = "PATH=${pkgs.git}/bin"; | |
}; | |
} |